11 lines
176 B
Ruby
11 lines
176 B
Ruby
class CreateGuests < ActiveRecord::Migration[5.1]
|
|
def change
|
|
create_table :guests do |t|
|
|
t.string :name
|
|
t.string :email
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|