about summary refs log tree commit diff
path: root/db/migrate/20180604000556_add_apply_to_mentions_flag_to_keyword_mutes.rb
blob: 8078a07bfcc5c44d9a6abfa52a5b7e2ea7ebe90b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

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