feat: inserts last 10 articles into DB on feed add

This commit is contained in:
Dennis Schoepf 2025-08-24 22:28:17 +02:00
parent 0fc94606d6
commit 13ba132159
5 changed files with 84 additions and 23 deletions

View file

@ -3,7 +3,6 @@ CREATE table article (
id INTEGER PRIMARY KEY,
name text NOT NULL,
url text NOT NULL UNIQUE,
read INTEGER DEFAULT 0,
readAt text,
feedId INTEGER,
FOREIGN KEY (feedId) REFERENCES feed(id)