wedding-planner/db/migrate/20240711180753_create_guests.rb

17 lines
339 B
Ruby
Raw Permalink Normal View History

2025-01-13 20:38:47 +00:00
# Copyright (C) 2024 Manuel Bustillo
# Copyright (C) 2024-2025 LibreWeddingPlanner contributors
2024-10-27 21:42:45 +00:00
2024-07-11 20:08:26 +02:00
class CreateGuests < ActiveRecord::Migration[7.1]
def change
2024-07-11 20:11:04 +02:00
create_table :guests, id: :uuid do |t|
2024-07-11 20:08:26 +02:00
t.string :first_name
t.string :last_name
t.string :email
t.string :phone
t.timestamps
end
end
end