From 9833d8197686d9614fc5cbd300e0761a520e2e6d Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Fri, 24 Oct 2025 12:49:29 +0200 Subject: Better SQL auto-update f.kind (#8148) Add a little help to make sure that feed.kind gets added during the first call. Tested that replacing the DB with a backup from Febuary 2020 just works, automatically adding new columns since FreshRSS 1.20.0. --- app/Models/FeedDAOSQLite.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/Models/FeedDAOSQLite.php') diff --git a/app/Models/FeedDAOSQLite.php b/app/Models/FeedDAOSQLite.php index a12fb2adb..18befed54 100644 --- a/app/Models/FeedDAOSQLite.php +++ b/app/Models/FeedDAOSQLite.php @@ -10,10 +10,10 @@ class FreshRSS_FeedDAOSQLite extends FreshRSS_FeedDAO { /** @param array{0:string,1:int,2:string} $errorInfo */ #[\Override] - protected function autoUpdateDb(array $errorInfo): bool { + public function autoUpdateDb(array $errorInfo): bool { if (($tableInfo = $this->pdo->query("PRAGMA table_info('feed')")) !== false) { $columns = $tableInfo->fetchAll(PDO::FETCH_COLUMN, 1); - foreach (['attributes', 'kind'] as $column) { + foreach (['kind'] as $column) { if (!in_array($column, $columns, true)) { return $this->addColumn($column); } -- cgit v1.2.3