Fix old migrations failing because of new version of `strong_migrations` (#11018)

Этот коммит содержится в:
ThibG 2019-06-09 22:55:28 +02:00 коммит произвёл Eugen Rochko
родитель 654fd071b7
Коммит e428e320b6
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

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