about summary refs log tree commit diff
path: root/db/migrate/20171009222537_create_keyword_mutes.rb
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2019-05-30 21:12:02 +0200
committerThibG <thib@sitedethib.com>2019-05-30 21:20:42 +0200
commit17fb1c4345348da5a6f9338912824a03d348841f (patch)
tree4390b0dd96d978e0bf2f1292cecbb0c1965378a7 /db/migrate/20171009222537_create_keyword_mutes.rb
parent8ce2a0887540e66fce5b7b52df12126b05cd740f (diff)
Fix old migrations failing because of new version of `strong_migrations`
Diffstat (limited to 'db/migrate/20171009222537_create_keyword_mutes.rb')
-rw-r--r--db/migrate/20171009222537_create_keyword_mutes.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20171009222537_create_keyword_mutes.rb b/db/migrate/20171009222537_create_keyword_mutes.rb
index ec0c756fb..66411ba1d 100644
--- a/db/migrate/20171009222537_create_keyword_mutes.rb
+++ b/db/migrate/20171009222537_create_keyword_mutes.rb
@@ -7,6 +7,6 @@ class CreateKeywordMutes < ActiveRecord::Migration[5.1]
       t.timestamps
     end
 
-    add_foreign_key :keyword_mutes, :accounts, on_delete: :cascade
+    safety_assured { add_foreign_key :keyword_mutes, :accounts, on_delete: :cascade }
   end
 end