blob: 55824fa6573ffaadc2f4f931f0129f3dc728a0c9 (
plain)
1
2
3
4
5
6
7
8
9
|
class AddActiveFieldToEnumerations < ActiveRecord::Migration
def self.up
add_column :enumerations, :active, :boolean, :default => true, :null => false
end
def self.down
remove_column :enumerations, :active
end
end
|