summaryrefslogtreecommitdiffstats
path: root/db/migrate/20121026002032_add_enumerations_position_name.rb
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