Add sync service

This commit is contained in:
2024-05-05 14:08:06 +02:00
parent 058c517b3b
commit 7add59d14a
6 changed files with 137 additions and 34 deletions
+2 -2
View File
@@ -24,7 +24,7 @@ create table if not exists entries(
link text not null,
date timestamp with time zone not null,
content text not null,
author text
authors text[] not null
);
create table if not exists entries_users(
@@ -34,6 +34,6 @@ create table if not exists entries_users(
is_bookmarked bool not null,
is_read_later bool not null,
is_ignored bool not null,
constraint entries_users_pk primary key(user_id, feed_id)
constraint entries_users_pk primary key (user_id, feed_id)
);