20a1ff2d61
* Drag and Drop Sorting using Jquery-ui * Updating database tables * version 3.1.7
25 lines
756 B
PHP
25 lines
756 B
PHP
<?php
|
|
|
|
/**
|
|
* Update to version 3.1.7
|
|
*/
|
|
|
|
use Lychee\Modules\Database;
|
|
use Lychee\Modules\Response;
|
|
|
|
// Add position to photos
|
|
$query = Database::prepare($connection, "SELECT `position` FROM `?` LIMIT 1", array(LYCHEE_TABLE_PHOTOS));
|
|
$result = Database::execute($connection, $query, 'update_030107', __LINE__);
|
|
|
|
if ($result===false) {
|
|
|
|
$query = Database::prepare($connection, "ALTER TABLE `?` ADD `position` TINYINT(1) NOT NULL", array(LYCHEE_TABLE_PHOTOS));
|
|
$result = Database::execute($connection, $query, 'update_030107', __LINE__);
|
|
|
|
if ($result===false) Response::error('Could not add position to database!');
|
|
|
|
}
|
|
// Set version
|
|
if (Database::setVersion($connection, '030107')===false) Response::error('Could not update version of database!');
|
|
|
|
?>
|