Order stories by feed publish time, not ingest time

This commit is contained in:
prosolis
2026-05-25 18:49:47 -07:00
parent 58493006e1
commit f52f26ff8d
6 changed files with 47 additions and 16 deletions

View File

@@ -15,7 +15,8 @@ CREATE TABLE IF NOT EXISTS stories (
channel TEXT,
classified INTEGER NOT NULL DEFAULT 0,
paywalled INTEGER NOT NULL DEFAULT 0,
seen_at INTEGER NOT NULL
seen_at INTEGER NOT NULL,
published_at INTEGER
);
CREATE TABLE IF NOT EXISTS post_log (