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/FeedDAO.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Models/FeedDAO.php') diff --git a/app/Models/FeedDAO.php b/app/Models/FeedDAO.php index 65d834936..346aa1924 100644 --- a/app/Models/FeedDAO.php +++ b/app/Models/FeedDAO.php @@ -23,7 +23,7 @@ class FreshRSS_FeedDAO extends Minz_ModelPdo { } /** @param array{0:string,1:int,2:string} $errorInfo */ - protected function autoUpdateDb(array $errorInfo): bool { + public function autoUpdateDb(array $errorInfo): bool { if (isset($errorInfo[0])) { if ($errorInfo[0] === FreshRSS_DatabaseDAO::ER_BAD_FIELD_ERROR || $errorInfo[0] === FreshRSS_DatabaseDAOPGSQL::UNDEFINED_COLUMN) { $errorLines = explode("\n", $errorInfo[2], 2); // The relevant column name is on the first line, other lines are noise -- cgit v1.2.3