Fix old migrations failing because of new version of `strong_migrations`

This commit is contained in:
Thibaut Girka 2019-05-30 21:12:02 +02:00 committed by ThibG
parent 8ce2a08875
commit 17fb1c4345
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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