initial commit
[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 stringnot null
6 );
7