Initial support for poll 'ready' bits
[bpt/portal.git] / tables.sql
index 17d755b..ccaca80 100644 (file)
@@ -105,6 +105,7 @@ CREATE TABLE Poll(
        ends DATE NOT NULL,
        votes INTEGER NOT NULL,
        official BOOL NOT NULL,
+       ready BOOL NOT NULL,
        FOREIGN KEY (usr) REFERENCES WebUser(id) ON DELETE CASCADE);
 
 CREATE SEQUENCE PollSeq START 1;