update_020601.php 677 B

1234567891011121314151617181920212223
  1. <?php
  2. ###
  3. # @name Update to version 2.6.1
  4. # @author Tobias Reich
  5. # @copyright 2014 by Tobias Reich
  6. ###
  7. # Add `downloadable`
  8. $query = Database::prepare($database, "SELECT `downloadable` FROM `?` LIMIT 1", array(LYCHEE_TABLE_ALBUMS));
  9. if (!$database->query($query)) {
  10. $query = Database::prepare($database, "ALTER TABLE `?` ADD `downloadable` TINYINT(1) NOT NULL DEFAULT 1", array(LYCHEE_TABLE_ALBUMS));
  11. $result = $database->query($query);
  12. if (!$result) {
  13. Log::error($database, 'update_020601', __LINE__, 'Could not update database (' . $database->error . ')');
  14. return false;
  15. }
  16. }
  17. # Set version
  18. if (Database::setVersion($database, '020601')===false) return false;
  19. ?>