11388907fSMichael Schramm<?php 21388907fSMichael Schramm/** 31388907fSMichael Schramm * webtrees: online genealogy 4*8fcd0d32SGreg Roach * Copyright (C) 2019 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 */ 16e7f56f2aSGreg Roachdeclare(strict_types=1); 17e7f56f2aSGreg Roach 181388907fSMichael Schrammnamespace Fisharebest\Webtrees\Schema; 191388907fSMichael Schramm 201388907fSMichael Schramm/** 211388907fSMichael Schramm * Upgrade the database schema from version 32 to version 33. 221388907fSMichael Schramm */ 23c1010edaSGreg Roachclass Migration32 implements MigrationInterface 24c1010edaSGreg Roach{ 251388907fSMichael Schramm /** 261388907fSMichael Schramm * Upgrade to to the next version 2719d91378SGreg Roach * 2819d91378SGreg Roach * @return void 291388907fSMichael Schramm */ 30362be83aSGreg Roach public function upgrade(): void 31c1010edaSGreg Roach { 32c9beb871SGreg Roach // These migrations have been merged into migration 0. 33c9beb871SGreg Roach // Direct upgrade from webtrees < 1.7.9 is not supported. 341388907fSMichael Schramm } 351388907fSMichael Schramm} 36