13 lines
241 B
Ruby
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
|