20121026002032_add_enumerations_position_name.rb
9 lines
| 213 B
| text/x-ruby
|
RubyLexer
|
r10508 | class AddEnumerationsPositionName < ActiveRecord::Migration | ||
def up | ||||
add_column :enumerations, :position_name, :string, :limit => 30 | ||||
end | ||||
def down | ||||
remove_column :enumerations, :position_name | ||||
end | ||||
end | ||||