aboutsummaryrefslogtreecommitdiffstats
path: root/schema.sql
blob: 1ae7fdd4af411d253c127a56faf571455327d81e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
create table guests(
       id integer primary key autoincrement,
       user_name text not null,
       full_name text,
       rsvp boolean default 0,
       email text,
       mailing text,
       plusone boolean default 0,
       plusonename text,
       kids boolean default 0,
       kidsnames text,
       comments text
);