mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
Fix old migrations failing because of new version of strong_migrations
This commit is contained in:
parent
8ce2a08875
commit
17fb1c4345
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user