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