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

13 lines
241 B
Ruby

class CreateGuests < ActiveRecord::Migration[7.1]
def change
create_table :guests, id: :uuid do |t|
t.string :first_name
t.string :last_name
t.string :email
t.string :phone
t.timestamps
end
end
end