diff options
author | Surinna Curtis <ekiru.0@gmail.com> | 2017-07-16 16:10:34 -0500 |
---|---|---|
committer | Surinna Curtis <ekiru.0@gmail.com> | 2017-09-13 21:47:30 -0500 |
commit | 27e55da8530b6557bd5375240bee2aa09f25d021 (patch) | |
tree | 420a869bc03f24e0995740f7b791cd57db1593e2 /db | |
parent | 3cac5bc2c3105ab0daab1e6892348d5be96d66a3 (diff) |
Add a hide_notifications column to mutes
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20170716191202_add_hide_notifications_to_mute.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20170716191202_add_hide_notifications_to_mute.rb b/db/migrate/20170716191202_add_hide_notifications_to_mute.rb new file mode 100644 index 000000000..de7d2a4a2 --- /dev/null +++ b/db/migrate/20170716191202_add_hide_notifications_to_mute.rb @@ -0,0 +1,5 @@ +class AddHideNotificationsToMute < ActiveRecord::Migration[5.1] + def change + add_column :mutes, :hide_notifications, :boolean, default: false, null: false + end +end |