1<?php 2namespace Fisharebest\Webtrees\Schema; 3 4/** 5 * webtrees: online genealogy 6 * Copyright (C) 2015 webtrees development team 7 * This program is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 18use Fisharebest\Webtrees\Database; 19 20/** 21 * Class Migration15 - upgrade the database schema from version 16 to version 17. 22 */ 23class Migration15 implements MigrationInterface { 24 /** {@inheritDoc} */ 25 public function upgrade() { 26 // Delete old config settings 27 Database::exec("DELETE FROM `##gedcom_setting` WHERE setting_name IN('GEDCOM_DEFAULT_TAB', 'LINK_ICONS', 'ZOOM_BOXES', 'SHOW_LIST_PLACES', 'SHOW_CONTEXT_HELP')"); 28 Database::exec("DELETE FROM `##user_setting` WHERE setting_name='defaulttab'"); 29 30 // There is no way to add a RESN tag to NOTE objects 31 Database::exec("UPDATE `##gedcom_setting` SET setting_value='SOUR,RESN' WHERE setting_name='NOTE_FACTS_ADD' AND setting_value='SOUR'"); 32 33 // This needs to be an absolute URL. If not set, it defaults to the full path to login.php 34 Database::exec("DELETE FROM `##site_setting` WHERE setting_name='LOGIN_URL' AND setting_value='login.php'"); 35 // No need for an empty value 36 Database::exec("DELETE FROM `##site_setting` WHERE setting_name='SERVER_URL' AND setting_value=''"); 37 38 // Later PHP versions use session IDs longer than 32 chars. 39 Database::exec("ALTER TABLE `##session` CHANGE session_id session_id CHAR(128) COLLATE utf8_unicode_ci NOT NULL"); 40 } 41} 42