wedding-planner/db/migrate/20240724181756_create_tables_arrangements.rb

12 lines
257 B
Ruby
Raw Permalink Normal View History

2025-01-23 21:34:23 +00:00
# Copyright (C) 2024-2025 LibreWeddingPlanner contributors
class CreateTablesArrangements < ActiveRecord::Migration[7.1]
def change
create_table :tables_arrangements, id: :uuid do |t|
t.integer :discomfort
t.timestamps
end
end
end