schema.sql 153 B

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