blob: 6d0c2d57244f2fd36f229ba15271f6f1a30f0cc0 (
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 1,
email text,
mailing text,
plusone boolean default 1,
plusonename text,
kids boolean default 1,
kidsnames text,
comments text
);
|