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

13 lines
230 B
Ruby
Raw Normal View History

2024-07-11 20:08:26 +02:00
class CreateGuests < ActiveRecord::Migration[7.1]
def change
create_table :guests do |t|
t.string :first_name
t.string :last_name
t.string :email
t.string :phone
t.timestamps
end
end
end