Files
wedding/db/migrate/20180324193210_create_guests.rb
John Lees-Miller 6e82ba528b Make open source
2018-10-27 16:46:26 +01:00

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