aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Horel <guillaume.horel@gmail.com>2015-03-16 21:58:04 -0400
committerGuillaume Horel <guillaume.horel@gmail.com>2015-03-16 21:58:04 -0400
commit57d7fc33460546803e92e8443474f07b71650128 (patch)
treea9091b0314400869b8c5bef6536e639f357563fd
parent9a325a9d1e576922f63c97c2ca9f2fe94a1b029e (diff)
downloadwedding-website-57d7fc33460546803e92e8443474f07b71650128.tar.gz
add schema
-rw-r--r--schema.sql13
1 files changed, 13 insertions, 0 deletions
diff --git a/schema.sql b/schema.sql
new file mode 100644
index 0000000..6d0c2d5
--- /dev/null
+++ b/schema.sql
@@ -0,0 +1,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
+);