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

require Rails.root.join('lib', 'mastodon', 'migration_helpers')

class AddActionToCustomFilters < ActiveRecord::Migration[6.1]
  include Mastodon::MigrationHelpers

  disable_ddl_transaction!

  def up
    safety_assured do
      add_column_with_default :custom_filters, :action, :integer, allow_null: false, default: 0
      execute 'UPDATE custom_filters SET action = 1 WHERE irreversible IS TRUE'
    end
  end

  def down
    execute 'UPDATE custom_filters SET irreversible = (action = 1)'
    remove_column :custom_filters, :action
  end
end