|
@@ -8,10 +8,16 @@
|
|
|
|
|
|
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");
|
|
|
- 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';");
|
|
|
-if (!$result) return false;
|
|
|
+if (!$result) {
|
|
|
+ Log::error($database, 'update_020200', __LINE__, 'Could not update database (' . $database->error . ')');
|
|
|
+ return false;
|
|
|
+}
|
|
|
|
|
|
?>
|