Browse Source

Default ist downloadable

Tobias Reich 10 years ago
parent
commit
a613ee58c7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      php/database/update_020601.php

+ 1 - 1
php/database/update_020601.php

@@ -8,7 +8,7 @@
 
 # Add `downloadable`
 if (!$database->query("SELECT `downloadable` FROM `lychee_albums` LIMIT 1;")) {
-	$result = $database->query("ALTER TABLE `lychee_albums` ADD `downloadable` TINYINT(1) NOT NULL DEFAULT 0");
+	$result = $database->query("ALTER TABLE `lychee_albums` ADD `downloadable` TINYINT(1) NOT NULL DEFAULT 1");
 	if (!$result) {
 		Log::error($database, 'update_020601', __LINE__, 'Could not update database (' . $database->error . ')');
 		return false;