Files
FreshRSS/app/Models/FeedDAOSQLite.php
2023-05-11 13:02:04 +02:00

18 lines
460 B
PHP

<?php
class FreshRSS_FeedDAOSQLite extends FreshRSS_FeedDAO {
/** @param array<string> $errorInfo */
protected function autoUpdateDb(array $errorInfo): bool {
if ($tableInfo = $this->pdo->query("PRAGMA table_info('feed')")) {
$columns = $tableInfo->fetchAll(PDO::FETCH_COLUMN, 1);
foreach (['attributes', 'kind'] as $column) {
if (!in_array($column, $columns, true)) {
return $this->addColumn($column);
}
}
}
return false;
}
}