mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
16 lines
378 B
Ruby
16 lines
378 B
Ruby
require Rails.root.join('lib', 'mastodon', 'migration_helpers')
|
|
|
|
class AddHideNotificationsToMute < ActiveRecord::Migration[5.1]
|
|
include Mastodon::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
|