xref: /webtrees/app/Schema/Migration16.php (revision 3bfb94b0b402ff08e5888afb946384316f6d3e60)
1*3bfb94b0SGreg Roach<?php
2*3bfb94b0SGreg Roachnamespace Fisharebest\Webtrees\Schema;
3*3bfb94b0SGreg Roach
4*3bfb94b0SGreg Roach/**
5*3bfb94b0SGreg Roach * webtrees: online genealogy
6*3bfb94b0SGreg Roach * Copyright (C) 2015 webtrees development team
7*3bfb94b0SGreg Roach * This program is free software: you can redistribute it and/or modify
8*3bfb94b0SGreg Roach * it under the terms of the GNU General Public License as published by
9*3bfb94b0SGreg Roach * the Free Software Foundation, either version 3 of the License, or
10*3bfb94b0SGreg Roach * (at your option) any later version.
11*3bfb94b0SGreg Roach * This program is distributed in the hope that it will be useful,
12*3bfb94b0SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
13*3bfb94b0SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14*3bfb94b0SGreg Roach * GNU General Public License for more details.
15*3bfb94b0SGreg Roach * You should have received a copy of the GNU General Public License
16*3bfb94b0SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
17*3bfb94b0SGreg Roach */
18*3bfb94b0SGreg Roachuse Fisharebest\Webtrees\Database;
19*3bfb94b0SGreg Roach
20*3bfb94b0SGreg Roach/**
21*3bfb94b0SGreg Roach * Class Migration16 - upgrade the database schema from version 16 to version 17.
22*3bfb94b0SGreg Roach */
23*3bfb94b0SGreg Roachclass Migration16 implements MigrationInterface {
24*3bfb94b0SGreg Roach	/** {@inheritDoc} */
25*3bfb94b0SGreg Roach	public function upgrade() {
26*3bfb94b0SGreg Roach		// Add a "default" user, to store default settings
27*3bfb94b0SGreg 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')");
28*3bfb94b0SGreg Roach
29*3bfb94b0SGreg Roach		// Add the initial default block settings
30*3bfb94b0SGreg 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')");
31*3bfb94b0SGreg Roach
32*3bfb94b0SGreg Roach		// Add a "default" tree, to store default settings
33*3bfb94b0SGreg Roach		Database::exec("INSERT IGNORE INTO `##gedcom` (gedcom_id, gedcom_name) VALUES (-1, 'DEFAULT_TREE')");
34*3bfb94b0SGreg Roach
35*3bfb94b0SGreg Roach		// Add the initial default block settings
36*3bfb94b0SGreg 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')");
37*3bfb94b0SGreg Roach
38*3bfb94b0SGreg Roach		// Some modules (e.g. sitemap) require larger settings
39*3bfb94b0SGreg Roach		Database::exec("ALTER TABLE `##module_setting` CHANGE setting_value setting_value MEDIUMTEXT COLLATE utf8_unicode_ci NOT NULL");
40*3bfb94b0SGreg Roach	}
41*3bfb94b0SGreg Roach}
42