Nb votes and max votes displayed in progress bar
[cavote.git] / schema.sql
index 757b695..700c2a3 100644 (file)
@@ -47,7 +47,7 @@ create table votes (
     is_weighted BOOLEAN DEFAULT 0 NOT NULL,
     is_open BOOLEAN DEFAULT 0 NOT NULL,
     is_terminated BOOLEAN DEFAULT 0 NOT NULL,
-    id_author INTEGER DEFAULT 1 NOT NULL, -- :COMMENT:maethor:120528: not null ?
+    id_author INTEGER DEFAULT 1 NOT NULL,
     id_group INTEGER DEFAULT 1 NOT NULL,
     FOREIGN KEY(id_author) REFERENCES users (id) ON DELETE SET DEFAULT,
     FOREIGN KEY(id_group) REFERENCES groups (id),