Ajout d'une barre de menu, réécriture des formulaires, ajout d'attribut dans la table...
[cavote.git] / schema.sql
index d138caa..4b23934 100644 (file)
@@ -1,8 +1,20 @@
 drop table if exists votes;
 create table votes (
-    id integer primary key autoincrement,
-    title string not null,
-    description string not null,
-    date string not null
+    id INTEGER primary key autoincrement,
+    title TEXT not null,
+    description TEXT,
+    category TEXT,
+    date_begin INTEGER default CURRENT_TIMESTAMP not null,
+    date_end INTEGER not null,
+    is_transparent INTEGER default 1 not null, 
+    is_public INTEGER default 1 not null,
+    is_multiplechoice INTEGER default 1 not null,
+    is_weighted INTEGER default 0 not null,
+    is_closed INTEGER default 0 not null
+    --id_author INTEGER not null,
+    --id_role INTEGER,
+    --FOREIGN KEY(id_author) REFERENCES user(id),
+    --FOREIGN KEY(id_role) REFERENCES role(id)
 );
 
+