summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-03-07 06:54:05 +0300
committerAndrew Dolgov <[email protected]>2019-03-07 06:54:05 +0300
commita1f832287199b67fb7784ec8483f962d9ed4966b (patch)
treebbe0b5ae791f4b56232e057cc7573f0364ef43a7 /update.php
parent44858ca2dd677e0ede51c7a326eeb0d598bdcf1b (diff)
further update CLI schema updater layout to make it more readable
Diffstat (limited to 'update.php')
-rwxr-xr-xupdate.php17
1 files changed, 9 insertions, 8 deletions
diff --git a/update.php b/update.php
index 9526c839b..81a0ec725 100755
--- a/update.php
+++ b/update.php
@@ -320,40 +320,41 @@
}
if (isset($options["update-schema"])) {
- Debug::log("checking for updates (" . DB_TYPE . ")...");
+ Debug::log("Checking for updates (" . DB_TYPE . ")...");
$updater = new DbUpdater(Db::pdo(), DB_TYPE, SCHEMA_VERSION);
if ($updater->isUpdateRequired()) {
- Debug::log("schema update required, version " . $updater->getSchemaVersion() . " to " . SCHEMA_VERSION);
+ Debug::log("Schema update required, version " . $updater->getSchemaVersion() . " to " . SCHEMA_VERSION);
if (DB_TYPE == "mysql")
Debug::Log("READ THIS: Due to MySQL limitations, your database is not completely protected while updating.\n".
"Errors may put it in an inconsistent state requiring manual rollback.\nBACKUP YOUR DATABASE BEFORE CONTINUING.");
+ else
+ Debug::log("WARNING: please backup your database before continuing.");
- Debug::log("WARNING: please backup your database before continuing.");
Debug::log("Type 'yes' to continue.");
if (read_stdin() != 'yes')
exit;
- print "Performing updates to version " . SCHEMA_VERSION . "...\n";
+ Debug::log("Performing updates to version " . SCHEMA_VERSION);
for ($i = $updater->getSchemaVersion() + 1; $i <= SCHEMA_VERSION; $i++) {
- Debug::log(" * Updating to version $i...");
+ Debug::log("* Updating to version $i...");
$result = $updater->performUpdateTo($i, false);
if ($result) {
- print " * Completed.";
+ Debug::log("* Completed.");
} else {
- print "One of the updates failed. Either retry the process or perform updates manually.";
+ Debug::log("One of the updates failed. Either retry the process or perform updates manually.");
return;
}
}
} else {
- Debug::log("update not required.");
+ Debug::log("Update not required.");
}
}