summaryrefslogtreecommitdiffstats
path: root/db/migrate/20121026002032_add_enumerations_position_name.rb
blob: 52cbe08eb866f15ee3b994fbef15378954a6c6e4 (plain)
1
2
3
4
5
6
7
8
9
class AddEnumerationsPositionName < ActiveRecord::Migration
  def up
    add_column :enumerations, :position_name, :string, :limit => 30
  end

  def down
    remove_column :enumerations, :position_name
  end
end