xref: /webtrees/app/Schema/Migration7.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 Migration7 - upgrade the database schema from version 7 to version 8.
22*3bfb94b0SGreg Roach */
23*3bfb94b0SGreg Roachclass Migration7 implements MigrationInterface {
24*3bfb94b0SGreg Roach	/** {@inheritDoc} */
25*3bfb94b0SGreg Roach	public function upgrade() {
26*3bfb94b0SGreg Roach		// Update config data defining theme selection
27*3bfb94b0SGreg Roach		Database::exec(
28*3bfb94b0SGreg Roach			"UPDATE `##gedcom_setting` SET setting_value=TRIM(LEADING 'themes/' FROM TRIM(TRAILING '/' FROM setting_value)) WHERE setting_name='THEME_DIR'"
29*3bfb94b0SGreg Roach		);
30*3bfb94b0SGreg Roach		Database::exec(
31*3bfb94b0SGreg Roach			"UPDATE `##user_setting` SET setting_value=TRIM(LEADING 'themes/' FROM TRIM(TRAILING '/' FROM setting_value)) WHERE setting_name='THEME_DIR'"
32*3bfb94b0SGreg Roach		);
33*3bfb94b0SGreg Roach		Database::exec(
34*3bfb94b0SGreg Roach			"UPDATE `##user_gedcom_setting` SET setting_value=TRIM(LEADING 'themes/' FROM TRIM(TRAILING '/' FROM setting_value)) WHERE setting_name='THEME_DIR'"
35*3bfb94b0SGreg Roach		);
36*3bfb94b0SGreg Roach	}
37*3bfb94b0SGreg Roach}
38