wedding-planner/db/migrate/20240724181853_create_seats.rb
Manuel Bustillo 8c4e6a0109
All checks were successful
Run unit tests / unit_tests (push) Successful in 3m36s
Initial version of VNS algorithm (#8)
Reviewed-on: #8
Co-authored-by: Manuel Bustillo <bustikiller@bustikiller.com>
Co-committed-by: Manuel Bustillo <bustikiller@bustikiller.com>
2024-08-01 18:27:41 +00:00

14 lines
379 B
Ruby

class CreateSeats < ActiveRecord::Migration[7.1]
def change
create_table :seats, id: :uuid do |t|
t.references :guest, null: false, foreign_key: true, type: :uuid
t.references :tables_arrangement, null: false, type: :uuid
t.integer :table_number
t.timestamps
end
add_foreign_key :seats, :tables_arrangements, on_delete: :cascade
end
end