aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20130731142632_remove_prominence_from_info_request_event.rb
blob: df0278c20fe20fb8471dd9acaec015358e57673a (plain)
1
2
3
4
5
6
7
8
9
class RemoveProminenceFromInfoRequestEvent < ActiveRecord::Migration
  def up
      remove_column :info_request_events, :prominence
  end

  def down
      add_column :info_request_events, :prominence, :string, :null => false, :default => 'normal'
  end
end