aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20130822161803_add_prominence_fields_to_outgoing_message.rb
blob: a75e0d426e901fbf227ce7d0d6a5ef742e58171e (plain)
1
2
3
4
5
6
class AddProminenceFieldsToOutgoingMessage < ActiveRecord::Migration
  def change
      add_column :outgoing_messages, :prominence, :string, :null => false, :default => 'normal'
      add_column :outgoing_messages, :prominence_reason, :text
  end
end