aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/081_add_event_prominence.rb
blob: 184e1a267b81e530643260c1385927a430bede67 (plain)
1
2
3
4
5
6
7
8
9
class AddEventProminence < ActiveRecord::Migration
    def self.up
        add_column :info_request_events, :prominence, :string, :null => false, :default => 'normal'
    end

    def self.down
        raise "safer not to have reverse migration scripts, and we never use them"
    end
end