diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-05-30 21:12:02 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-05-30 21:20:42 +0200 |
commit | 17fb1c4345348da5a6f9338912824a03d348841f (patch) | |
tree | 4390b0dd96d978e0bf2f1292cecbb0c1965378a7 /db | |
parent | 8ce2a0887540e66fce5b7b52df12126b05cd740f (diff) |
Fix old migrations failing because of new version of `strong_migrations`
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20171009222537_create_keyword_mutes.rb | 2 | ||||
-rw-r--r-- | db/migrate/20180410220657_create_bookmarks.rb | 4 |
2 files changed, 3 insertions, 3 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 diff --git a/db/migrate/20180410220657_create_bookmarks.rb b/db/migrate/20180410220657_create_bookmarks.rb index 208da452b..08d22c10d 100644 --- a/db/migrate/20180410220657_create_bookmarks.rb +++ b/db/migrate/20180410220657_create_bookmarks.rb @@ -7,8 +7,8 @@ class CreateBookmarks < ActiveRecord::Migration[5.1] t.timestamps end - add_foreign_key :bookmarks, :accounts, column: :account_id, on_delete: :cascade - add_foreign_key :bookmarks, :statuses, column: :status_id, on_delete: :cascade + safety_assured { add_foreign_key :bookmarks, :accounts, column: :account_id, on_delete: :cascade } + safety_assured { add_foreign_key :bookmarks, :statuses, column: :status_id, on_delete: :cascade } add_index :bookmarks, [:account_id, :status_id], unique: true end end |