blob: eb5423feea373b02bfb3e49fd72764aa4ca16a9f (
plain)
1
2
3
4
5
6
7
8
9
|
class AddEnumerationsPositionName < ActiveRecord::Migration[4.2]
def up
add_column :enumerations, :position_name, :string, :limit => 30
end
def down
remove_column :enumerations, :position_name
end
end
|