aboutsummaryrefslogtreecommitdiffstats
path: root/schema.sql
blob: cdf2678dfc977cb29c78882514bb17964602c860 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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,
       lastupdate integer(4) default current_timestamp
);