2023-07-12 09:47:08 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-03-27 16:09:10 +02:00
|
|
|
class CreateReportNotes < ActiveRecord::Migration[5.2]
|
2018-04-02 22:04:14 +02:00
|
|
|
def change
|
|
|
|
create_table :report_notes do |t|
|
|
|
|
t.text :content, null: false
|
|
|
|
t.references :report, null: false
|
|
|
|
t.references :account, null: false
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
|
2019-06-09 22:55:28 +02:00
|
|
|
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 }
|
2018-04-02 22:04:14 +02:00
|
|
|
end
|
|
|
|
end
|