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,8 @@ CREATE table feed (
id INTEGER PRIMARY KEY,
name text NOT NULL,
url text NOT NULL UNIQUE,
addedAt DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL
createdAt DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL,
lastSyncedAt DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL
);
-- +migrate Down