this repo has no description
1create table if not exists posts (
2 uri text primary key,
3 create_ts int not null,
4 likes int not null
5);
6
7create table if not exists langs (
8 uri text primary key,
9 lang text not null,
10 foreign key(uri) references posts(uri) on delete cascade
11);
12
13create index if not exists ts_idx on posts(create_ts);