aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Horel <guillaume.horel@gmail.com>2015-03-21 20:20:33 -0400
committerGuillaume Horel <guillaume.horel@gmail.com>2015-03-21 20:20:33 -0400
commit00847a468e810ef30e9953f39d6b1c6c7910a8df (patch)
tree0ae03435b4d6f7b083d2b6f6439f3b1a5e18313c
parenta66b26f694365716e2c9252a5588b433ff69346c (diff)
downloadwedding-website-00847a468e810ef30e9953f39d6b1c6c7910a8df.tar.gz
default to no
-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
);