Make open source

This commit is contained in:
John Lees-Miller
2018-10-27 16:46:26 +01:00
commit 6e82ba528b
163 changed files with 3912 additions and 0 deletions

View File

@ -0,0 +1,15 @@
class AddGuestInfo < ActiveRecord::Migration[5.1]
def change
enable_extension('citext')
change_table :guests do |t|
t.change :email, :citext, null: false
t.index :email, unique: true
t.string :token, null: false
t.boolean :attending
t.integer :diet
t.string :other_diet
end
end
end