feat: extends database schema with sync and creation timestamps

This commit is contained in:
Dennis Schoepf 2025-08-24 22:31:08 +02:00
parent 13ba132159
commit 5eab19c70e
3 changed files with 9 additions and 4 deletions

View file

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