15 lines
279 B
Ruby
15 lines
279 B
Ruby
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
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
|