about summary refs log tree commit diff
path: root/db/post_migrate/20180813160548_post_migrate_filters.rb
blob: 588548c1df518b7870418d7d371d695e5591882d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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