From: Thibaut Girka Date: Sun, 9 Jun 2019 20:31:23 +0000 (+0200) Subject: Fix old migrations failing because of new version of `strong_migrations` X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=e16c8fbc7a2b5a866960a87bc8c950ad0d38f61b;p=mastodon.git Fix old migrations failing because of new version of `strong_migrations` Fixes #1099 --- diff --git a/db/migrate/20180402040909_create_report_notes.rb b/db/migrate/20180402040909_create_report_notes.rb index 732ddf825..429cb4534 100644 --- a/db/migrate/20180402040909_create_report_notes.rb +++ b/db/migrate/20180402040909_create_report_notes.rb @@ -8,7 +8,7 @@ class CreateReportNotes < ActiveRecord::Migration[5.1] t.timestamps end - add_foreign_key :report_notes, :reports, column: :report_id, on_delete: :cascade - add_foreign_key :report_notes, :accounts, column: :account_id, on_delete: :cascade + safety_assured { add_foreign_key :report_notes, :reports, column: :report_id, on_delete: :cascade } + safety_assured { add_foreign_key :report_notes, :accounts, column: :account_id, on_delete: :cascade } end end diff --git a/db/migrate/20180707193142_migrate_filters.rb b/db/migrate/20180707193142_migrate_filters.rb index 10b814c0f..067c53357 100644 --- a/db/migrate/20180707193142_migrate_filters.rb +++ b/db/migrate/20180707193142_migrate_filters.rb @@ -41,7 +41,7 @@ class MigrateFilters < ActiveRecord::Migration[5.2] t.timestamps end - add_foreign_key :glitch_keyword_mutes, :accounts, on_delete: :cascade + safety_assured { add_foreign_key :glitch_keyword_mutes, :accounts, on_delete: :cascade } end CustomFilter.where(irreversible: true).find_each do |filter|