2025-01-13 21:37:02 +01:00
|
|
|
# Copyright (C) 2024-2025 LibreWeddingPlanner contributors
|
2024-10-27 21:42:45 +00:00
|
|
|
|
2024-08-01 18:27:41 +00:00
|
|
|
class CreateTablesArrangements < ActiveRecord::Migration[7.1]
|
|
|
|
def change
|
|
|
|
create_table :tables_arrangements, id: :uuid do |t|
|
|
|
|
t.integer :discomfort
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|