summaryrefslogtreecommitdiff
path: root/database/schema.sql
blob: 2bd79165a8d9880cc65840ad68eaa7ef6acaecb8 (plain)
1
2
3
4
5
6
create table if not exists entries (
  id integer primary key autoincrement,
  date date not null,
  title string not null,
  text string not null
);