word edit: restrict access by login cookie
[sheet.git] / tools / word.pg.sql
index 55de8ecd2415c24c3444e9c967ffe9aa7f97b1be..99664c9036b23f2d6ef15c3d81e717d7c5fbb90e 100644 (file)
@@ -1,3 +1,11 @@
+CREATE TABLE login (
+       username   text        NOT NULL UNIQUE,
+       pass       text,
+       email      text,
+       fullname   text,
+       id         serial      NOT NULL PRIMARY KEY
+);
+
 CREATE TABLE word (
        form       text        NOT NULL,
        alt        text[],