schema.sql 180 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 string not null
  7. );