add deadlines
[cavote.git] / schema.sql
1 drop table if exists votes;
2 create table votes (
3 id integer primary key autoincrement,
4 title string not null,
5 description string not null,
6 date datetime not null
7 );
8