13bfb94b0SGreg Roach<?php 23bfb94b0SGreg Roach/** 33bfb94b0SGreg Roach * webtrees: online genealogy 43bfb94b0SGreg Roach * Copyright (C) 2015 webtrees development team 53bfb94b0SGreg Roach * This program is free software: you can redistribute it and/or modify 63bfb94b0SGreg Roach * it under the terms of the GNU General Public License as published by 73bfb94b0SGreg Roach * the Free Software Foundation, either version 3 of the License, or 83bfb94b0SGreg Roach * (at your option) any later version. 93bfb94b0SGreg Roach * This program is distributed in the hope that it will be useful, 103bfb94b0SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 113bfb94b0SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 123bfb94b0SGreg Roach * GNU General Public License for more details. 133bfb94b0SGreg Roach * You should have received a copy of the GNU General Public License 143bfb94b0SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 153bfb94b0SGreg Roach */ 16*76692c8bSGreg Roachnamespace Fisharebest\Webtrees\Schema; 17*76692c8bSGreg Roach 183bfb94b0SGreg Roachuse Fisharebest\Webtrees\Database; 193bfb94b0SGreg Roach 203bfb94b0SGreg Roach/** 21*76692c8bSGreg Roach * Upgrade the database schema from version 16 to version 17. 223bfb94b0SGreg Roach */ 233bfb94b0SGreg Roachclass Migration16 implements MigrationInterface { 24*76692c8bSGreg Roach /** 25*76692c8bSGreg Roach * Upgrade to to the next version 26*76692c8bSGreg Roach */ 273bfb94b0SGreg Roach public function upgrade() { 283bfb94b0SGreg Roach // Add a "default" user, to store default settings 293bfb94b0SGreg Roach Database::exec("INSERT IGNORE INTO `##user` (user_id, user_name, real_name, email, password) VALUES (-1, 'DEFAULT_USER', 'DEFAULT_USER', 'DEFAULT_USER', 'DEFAULT_USER')"); 303bfb94b0SGreg Roach 313bfb94b0SGreg Roach // Add the initial default block settings 323bfb94b0SGreg Roach Database::exec("INSERT IGNORE INTO `##block` (user_id, location, block_order, module_name) VALUES (-1, 'main', 1, 'todays_events'), (-1, 'main', 2, 'user_messages'), (-1, 'main', 3, 'user_favorites'), (-1, 'side', 1, 'user_welcome'), (-1, 'side', 2, 'random_media'), (-1, 'side', 3, 'upcoming_events'), (-1, 'side', 4, 'logged_in')"); 333bfb94b0SGreg Roach 343bfb94b0SGreg Roach // Add a "default" tree, to store default settings 353bfb94b0SGreg Roach Database::exec("INSERT IGNORE INTO `##gedcom` (gedcom_id, gedcom_name) VALUES (-1, 'DEFAULT_TREE')"); 363bfb94b0SGreg Roach 373bfb94b0SGreg Roach // Add the initial default block settings 383bfb94b0SGreg Roach Database::exec("INSERT IGNORE INTO `##block` (gedcom_id, location, block_order, module_name) VALUES (-1, 'main', 1, 'gedcom_stats'), (-1, 'main', 2, 'gedcom_news'), (-1, 'main', 3, 'gedcom_favorites'), (-1, 'main', 4, 'review_changes'), (-1, 'side', 1, 'gedcom_block'), (-1, 'side', 2, 'random_media'), (-1, 'side', 3, 'todays_events'), (-1, 'side', 4, 'logged_in')"); 393bfb94b0SGreg Roach 403bfb94b0SGreg Roach // Some modules (e.g. sitemap) require larger settings 413bfb94b0SGreg Roach Database::exec("ALTER TABLE `##module_setting` CHANGE setting_value setting_value MEDIUMTEXT COLLATE utf8_unicode_ci NOT NULL"); 423bfb94b0SGreg Roach } 433bfb94b0SGreg Roach} 44