mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-01-02 06:09:14 +00:00
schema_version handling in backend.php
This commit is contained in:
12
backend.php
12
backend.php
@@ -1,4 +1,6 @@
|
||||
<?
|
||||
define(SCHEMA_VERSION, 2);
|
||||
|
||||
$op = $_GET["op"];
|
||||
|
||||
if ($op == "rpc") {
|
||||
@@ -25,6 +27,16 @@
|
||||
if (DB_TYPE == "pgsql") {
|
||||
pg_query("set client_encoding = 'utf-8'");
|
||||
}
|
||||
|
||||
$result = db_query($link, "SELECT schema_version FROM ttrss_version");
|
||||
|
||||
$schema_version = db_fetch_result($result, 0, "schema_version");
|
||||
|
||||
if ($schema_version != SCHEMA_VERSION) {
|
||||
print "Error: database schema is invalid
|
||||
(got version $schema_version; expected ".SCHEMA_VERSION.")";
|
||||
return;
|
||||
}
|
||||
|
||||
$fetch = $_GET["fetch"];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user