2024-07-24 20:24:01 +02:00
|
|
|
class CreateTablesArrangements < ActiveRecord::Migration[7.1]
|
|
|
|
def change
|
|
|
|
create_table :tables_arrangements, id: :uuid do |t|
|
2024-07-24 20:37:14 +02:00
|
|
|
t.integer :discomfort
|
2024-07-24 20:24:01 +02:00
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|