further update CLI schema updater layout to make it more readable
This commit is contained in:
parent
44858ca2dd
commit
a1f8322871
|
@ -41,20 +41,20 @@ class DbUpdater {
|
|||
$this->pdo->beginTransaction();
|
||||
|
||||
foreach ($lines as $line) {
|
||||
if (strpos($line, "--") !== 0 && $line) {
|
||||
|
||||
if ($html_output)
|
||||
print "<pre>$line</pre>";
|
||||
else
|
||||
print " * $line\n";
|
||||
Debug::log("> $line");
|
||||
|
||||
if (strpos($line, "--") !== 0 && $line) {
|
||||
try {
|
||||
$this->pdo->query($line); // PDO returns errors as exceptions now
|
||||
} catch (PDOException $e) {
|
||||
if ($html_output) {
|
||||
print "<div class='text-error'>Error: " . implode(", ", $this->pdo->errorInfo()) . "</div>";
|
||||
print "<div class='text-error'>Error: " . $e->getMessage() . "</div>";
|
||||
} else {
|
||||
Debug::log("Error: " . implode(", ", $this->pdo->errorInfo()));
|
||||
Debug::log("Error: " . $e->getMessage());
|
||||
}
|
||||
|
||||
$this->pdo->rollBack();
|
||||
|
|
15
update.php
15
update.php
|
@ -320,24 +320,25 @@
|
|||
}
|
||||
|
||||
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("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...");
|
||||
|
@ -345,15 +346,15 @@
|
|||
$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.");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue