add deadlines
[cavote.git] / schema.sql
index 3a54680..836a026 100644 (file)
@@ -2,6 +2,7 @@ drop table if exists votes;
 create table votes (
     id integer primary key autoincrement,
     title string not null,
-    description stringnot null
+    description string not null,
+    date datetime not null
 );