1
drop table if exists entries;
2
create table entries (
3
  id integer primary key autoincrement,
4
  title text not null,
5
  text text not null
6
);