11388907fSMichael Schramm<?php 21388907fSMichael Schramm/** 31388907fSMichael Schramm * webtrees: online genealogy 41388907fSMichael Schramm * Copyright (C) 2015 webtrees development team 51388907fSMichael Schramm * This program is free software: you can redistribute it and/or modify 61388907fSMichael Schramm * it under the terms of the GNU General Public License as published by 71388907fSMichael Schramm * the Free Software Foundation, either version 3 of the License, or 81388907fSMichael Schramm * (at your option) any later version. 91388907fSMichael Schramm * This program is distributed in the hope that it will be useful, 101388907fSMichael Schramm * but WITHOUT ANY WARRANTY; without even the implied warranty of 111388907fSMichael Schramm * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 121388907fSMichael Schramm * GNU General Public License for more details. 131388907fSMichael Schramm * You should have received a copy of the GNU General Public License 141388907fSMichael Schramm * along with this program. If not, see <http://www.gnu.org/licenses/>. 151388907fSMichael Schramm */ 161388907fSMichael Schrammnamespace Fisharebest\Webtrees\Schema; 171388907fSMichael Schramm 181388907fSMichael Schrammuse Fisharebest\Webtrees\Database; 191388907fSMichael Schrammuse Fisharebest\Webtrees\Site; 201388907fSMichael Schrammuse PDOException; 211388907fSMichael Schramm 221388907fSMichael Schramm/** 231388907fSMichael Schramm * Upgrade the database schema from version 32 to version 33. 241388907fSMichael Schramm */ 251388907fSMichael Schrammclass Migration32 implements MigrationInterface { 261388907fSMichael Schramm /** 271388907fSMichael Schramm * Upgrade to to the next version 281388907fSMichael Schramm */ 291388907fSMichael Schramm public function upgrade() { 301388907fSMichael Schramm try { 311388907fSMichael Schramm Database::prepare( 32*af1e6d0cSGreg Roach "ALTER TABLE `##site_setting` CHANGE setting_value setting_value VARCHAR(2000) NOT NULL" 331388907fSMichael Schramm )->execute(); 341388907fSMichael Schramm } catch (PDOException $ex) { 35*af1e6d0cSGreg Roach // Already done? 361388907fSMichael Schramm } 371388907fSMichael Schramm } 381388907fSMichael Schramm} 39