12 lines
235 B
Ruby
12 lines
235 B
Ruby
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
class CreateTablesArrangements < ActiveRecord::Migration[7.1]
|
|
def change
|
|
create_table :tables_arrangements, id: :uuid do |t|
|
|
t.integer :discomfort
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|