Use etags, fetch dates and save errors

This commit is contained in:
2024-05-05 14:32:36 +02:00
parent 7add59d14a
commit 5f8cc780e7
3 changed files with 32 additions and 4 deletions
+2 -1
View File
@@ -14,7 +14,8 @@ create table if not exists feeds(
submitter_id uuid not null references users(id),
added_date timestamp with time zone not null,
etag text,
last_fetch_date timestamp with time zone
last_fetch_date timestamp with time zone,
sync_error text
);
create table if not exists entries(