Quellcode durchsuchen

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

master^2
ThibG vor 4 Jahren
committed by Eugen Rochko
Ursprung
Commit
e428e320b6
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. +2
    -2
      db/migrate/20180402040909_create_report_notes.rb

+ 2
- 2
db/migrate/20180402040909_create_report_notes.rb Datei anzeigen

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

Laden…
Abbrechen
Speichern