From 7edf0568d23270a9469e937b48566da89bf84326 Mon Sep 17 00:00:00 2001 From: Jon Burgess Date: Sat, 13 Sep 2014 11:42:19 +0100 Subject: [PATCH] Add the user table to the schema in the readme. --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8224525..aa85ad4 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,12 @@ Query status of gateways: ); CREATE UNIQUE INDEX hwid_uniq ON badge USING btree (hwid); - + CREATE TABLE "user" ( + name text, + nickname text, + badgeid text NOT NULL + ); + CREATE UNIQUE INDEX badgeid_uniq ON "user" USING btree (badgeid);