Add lunch options

Change-Id: Ic4569fce73d8b33f5084e95d44797cba735914d5
diff --git a/create_user_table.sql b/create_user_table.sql
index ae935dc..453be4e 100644
--- a/create_user_table.sql
+++ b/create_user_table.sql
@@ -21,6 +21,9 @@
     earlybird_registration boolean not null default false,
     student boolean not null default false,
     conference_dinner boolean not null default false,
+    lunch_day_1 varchar(16) not null default '',
+    lunch_day_2 varchar(16) not null default '',
+    lunch_day_3 varchar(16) not null default '',
     total_due decimal(10,2) not null default 0.00,
     registered_at timestamp default '0000-00-00 00:00:00', 
     updated_at timestamp default now() on update now(),