Added Log to update_020200
This commit is contained in:
parent
308d373cbe
commit
b82c83d612
@ -8,10 +8,16 @@
|
|||||||
|
|
||||||
if (!$database->query("SELECT `visible` FROM `lychee_albums` LIMIT 1;")) {
|
if (!$database->query("SELECT `visible` FROM `lychee_albums` LIMIT 1;")) {
|
||||||
$result = $database->query("ALTER TABLE `lychee_albums` ADD `visible` TINYINT(1) NOT NULL DEFAULT 1");
|
$result = $database->query("ALTER TABLE `lychee_albums` ADD `visible` TINYINT(1) NOT NULL DEFAULT 1");
|
||||||
if (!$result) return false;
|
if (!$result) {
|
||||||
|
Log::error($database, 'update_020200', __LINE__, 'Could not update database (' . $database->error . ')');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$result = $database->query("UPDATE lychee_settings SET value = '020200' WHERE `key` = 'version';");
|
$result = $database->query("UPDATE lychee_settings SET value = '020200' WHERE `key` = 'version';");
|
||||||
if (!$result) return false;
|
if (!$result) {
|
||||||
|
Log::error($database, 'update_020200', __LINE__, 'Could not update database (' . $database->error . ')');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
?>
|
?>
|
Loading…
Reference in New Issue
Block a user