Gab Social. All are welcome.
This commit is contained in:
15
db/migrate/20170716191202_add_hide_notifications_to_mute.rb
Normal file
15
db/migrate/20170716191202_add_hide_notifications_to_mute.rb
Normal file
@@ -0,0 +1,15 @@
|
||||
require Rails.root.join('lib', 'gabsocial', 'migration_helpers')
|
||||
|
||||
class AddHideNotificationsToMute < ActiveRecord::Migration[5.1]
|
||||
include GabSocial::MigrationHelpers
|
||||
|
||||
disable_ddl_transaction!
|
||||
|
||||
def up
|
||||
add_column_with_default :mutes, :hide_notifications, :boolean, default: true, allow_null: false
|
||||
end
|
||||
|
||||
def down
|
||||
remove_column :mutes, :hide_notifications
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user