wedding-planner/db/migrate/20240724181756_create_tables_arrangements.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

10 lines
197 B
Ruby

class CreateTablesArrangements < ActiveRecord::Migration[7.1]
def change
create_table :tables_arrangements, id: :uuid do |t|
t.integer :discomfort
t.timestamps
end
end
end