about summary refs log tree commit diff
path: root/db/migrate/20180604000556_add_apply_to_mentions_flag_to_keyword_mutes.rb
blob: cd97d0f2077724d85b5da568afadc05ccb1875f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'mastodon/migration_helpers'

class AddApplyToMentionsFlagToKeywordMutes < ActiveRecord::Migration[5.2]
  include Mastodon::MigrationHelpers

  disable_ddl_transaction!

  def up
    safety_assured do
      add_column_with_default :glitch_keyword_mutes, :apply_to_mentions, :boolean, allow_null: false, default: true
    end
  end

  def down
    remove_column :glitch_keyword_mutes, :apply_to_mentions
  end
end