9 lines
169 B
Ruby
9 lines
169 B
Ruby
class CreateTablesArrangements < ActiveRecord::Migration[7.1]
|
|
def change
|
|
create_table :tables_arrangements, id: :uuid do |t|
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|