Browse Source

Added Log to update_020200

Tobias Reich 11 years ago
parent
commit
b82c83d612
1 changed files with 8 additions and 2 deletions
  1. 8 2
      php/database/update_020200.php

+ 8 - 2
php/database/update_020200.php

@@ -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;
+}
 
 ?>