schema.sql 182 B

12345678
  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. );