Add a hide_notifications column to mutes

This commit is contained in:
Surinna Curtis 2017-07-16 16:10:34 -05:00 committed by aschmitz
parent fdb0848e08
commit 90a0176b0b

View file

@ -0,0 +1,5 @@
class AddHideNotificationsToMute < ActiveRecord::Migration[5.1]
def change
add_column :mutes, :hide_notifications, :boolean, default: false, null: false
end
end