about summary refs log tree commit diff
path: root/db/post_migrate/20180813160548_post_migrate_filters.rb
blob: 82acf13d517dfd18cd5d0b6ccd7ffc1d1a2d6427 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class PostMigrateFilters < ActiveRecord::Migration[5.2]
  disable_ddl_transaction!

  def up
    drop_table :glitch_keyword_mutes if table_exists? :glitch_keyword_mutes
  end

  def down; end
end