diff options
author | Louise Crow <louise.crow@gmail.com> | 2013-08-22 17:18:58 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2013-09-16 14:03:21 +0100 |
commit | f21829cba97d9d6174ec53b2f10e37ba6b8bfdf6 (patch) | |
tree | e53484d47fbfaa4ae0635df7032347b895558018 | |
parent | 3fb6acc3b7cc58a8d4260227e29c8dd4cfbca76a (diff) |
Add prominence fields to outgoing message.
-rw-r--r-- | db/migrate/20130822161803_add_prominence_fields_to_outgoing_message.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/db/migrate/20130822161803_add_prominence_fields_to_outgoing_message.rb b/db/migrate/20130822161803_add_prominence_fields_to_outgoing_message.rb new file mode 100644 index 000000000..a75e0d426 --- /dev/null +++ b/db/migrate/20130822161803_add_prominence_fields_to_outgoing_message.rb @@ -0,0 +1,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 |