Removes feed type from database and adds addedAt timestamp

This commit is contained in:
Dennis Schoepf 2024-09-03 20:28:46 +02:00
parent 1a026913ac
commit a9618f950e

View file

@ -3,7 +3,7 @@ CREATE table feed (
id INTEGER PRIMARY KEY, id INTEGER PRIMARY KEY,
name text NOT NULL, name text NOT NULL,
url text NOT NULL UNIQUE, url text NOT NULL UNIQUE,
type text NOT NULL addedAt DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL
); );
-- +migrate Down -- +migrate Down