diff options
| -rw-r--r-- | schema.sql | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 ); |
