invoice_keeper/db/migrate/20250411171038_create_notes.rb

11 lines
199 B
Ruby

class CreateNotes < ActiveRecord::Migration[5.0]
def change
create_table :notes do |t|
t.text :content
t.references :client, foreign_key: true
t.timestamps
end
end
end