mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-04-19 05:47:16 -04:00
Fix entry->lastSeen in case of feed errors (#8646)
* Fix entry->lastSeen in case of feed errors Fix https://github.com/FreshRSS/FreshRSS/issues/8643 Fix lastSeen and feed's lastUpdate going out of sync Previous related PRs: * https://github.com/FreshRSS/FreshRSS/pull/5404 * https://github.com/FreshRSS/FreshRSS/pull/5382 * https://github.com/FreshRSS/FreshRSS/pull/5315 * Minor uneeded change
This commit is contained in:
committed by
GitHub
parent
b523cef71b
commit
3fac1bdf20
@@ -9,7 +9,7 @@ CREATE TABLE IF NOT EXISTS `category` (
|
||||
`name` VARCHAR(191) NOT NULL,
|
||||
`kind` SMALLINT DEFAULT 0, -- 1.20.0
|
||||
`lastUpdate` BIGINT DEFAULT 0, -- 1.20.0
|
||||
`error` SMALLINT DEFAULT 0, -- 1.20.0
|
||||
`error` BIGINT DEFAULT 0, -- Date, v1.29.0
|
||||
`attributes` TEXT, -- v1.15.0
|
||||
UNIQUE (`name`)
|
||||
);
|
||||
@@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `feed` (
|
||||
`priority` TINYINT(2) NOT NULL DEFAULT 10,
|
||||
`pathEntries` VARCHAR(4096) DEFAULT NULL,
|
||||
`httpAuth` VARCHAR(1024) DEFAULT NULL,
|
||||
`error` BOOLEAN DEFAULT 0,
|
||||
`error` BIGINT DEFAULT 0, -- Date, v1.29.0
|
||||
`ttl` INT NOT NULL DEFAULT 0,
|
||||
`attributes` TEXT, -- v1.11.0
|
||||
`cache_nbEntries` INT DEFAULT 0,
|
||||
|
||||
Reference in New Issue
Block a user