about summary refs log tree commit diff
path: root/db/post_migrate/20180813160548_post_migrate_filters.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20180813160548_post_migrate_filters.rb')
-rw-r--r--db/post_migrate/20180813160548_post_migrate_filters.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/db/post_migrate/20180813160548_post_migrate_filters.rb b/db/post_migrate/20180813160548_post_migrate_filters.rb
new file mode 100644
index 000000000..588548c1d
--- /dev/null
+++ b/db/post_migrate/20180813160548_post_migrate_filters.rb
@@ -0,0 +1,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
+