2023-07-12 01:47:08 -06:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-03-27 08:09:10 -06:00
|
|
|
class CreateReportNotes < ActiveRecord::Migration[5.2]
|
2018-04-02 14:04:14 -06: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 14:55:28 -06: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 14:04:14 -06:00
|
|
|
end
|
|
|
|
end
|