this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 646c17e2a0b8a8a7f116a6d0972b4cdabdf01938 13 lines 309 B view raw
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);