aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--schema.sql6
1 files changed, 3 insertions, 3 deletions
diff --git a/schema.sql b/schema.sql
index 6d0c2d5..1ae7fdd 100644
--- a/schema.sql
+++ b/schema.sql
@@ -2,12 +2,12 @@ create table guests(
id integer primary key autoincrement,
user_name text not null,
full_name text,
- rsvp boolean default 1,
+ rsvp boolean default 0,
email text,
mailing text,
- plusone boolean default 1,
+ plusone boolean default 0,
plusonename text,
- kids boolean default 1,
+ kids boolean default 0,
kidsnames text,
comments text
);