1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 17:15:55 +00:00

dbupdater: unify naming

This commit is contained in:
Andrew Dolgov
2021-02-15 16:14:00 +03:00
parent 166f2d4666
commit 6426ae559a
3 changed files with 17 additions and 17 deletions

View File

@@ -11,16 +11,16 @@ class DbUpdater {
$this->need_version = (int) $need_version;
}
function getSchemaVersion() {
function get_schema_version() {
$row = $this->pdo->query("SELECT schema_version FROM ttrss_version")->fetch();
return (int) $row['schema_version'];
}
function isUpdateRequired() {
return $this->getSchemaVersion() < $this->need_version;
function is_update_required() {
return $this->get_schema_version() < $this->need_version;
}
function getSchemaLines($version) {
function get_schema_lines($version) {
$filename = "schema/versions/".$this->db_type."/$version.sql";
if (file_exists($filename)) {
@@ -31,10 +31,10 @@ class DbUpdater {
}
}
function performUpdateTo($version, $html_output = true) {
if ($this->getSchemaVersion() == $version - 1) {
function update_to($version, $html_output = true) {
if ($this->get_schema_version() == $version - 1) {
$lines = $this->getSchemaLines($version);
$lines = $this->get_schema_lines($version);
if (is_array($lines)) {
@@ -63,7 +63,7 @@ class DbUpdater {
}
}
$db_version = $this->getSchemaVersion();
$db_version = $this->get_schema_version();
if ($db_version == $version) {
$this->pdo->commit();