11388907fSMichael Schramm<?php 23976b470SGreg Roach 31388907fSMichael Schramm/** 41388907fSMichael Schramm * webtrees: online genealogy 5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 61388907fSMichael Schramm * This program is free software: you can redistribute it and/or modify 71388907fSMichael Schramm * it under the terms of the GNU General Public License as published by 81388907fSMichael Schramm * the Free Software Foundation, either version 3 of the License, or 91388907fSMichael Schramm * (at your option) any later version. 101388907fSMichael Schramm * This program is distributed in the hope that it will be useful, 111388907fSMichael Schramm * but WITHOUT ANY WARRANTY; without even the implied warranty of 121388907fSMichael Schramm * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 131388907fSMichael Schramm * GNU General Public License for more details. 141388907fSMichael Schramm * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 161388907fSMichael Schramm */ 17fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 19e7f56f2aSGreg Roach 201388907fSMichael Schrammnamespace Fisharebest\Webtrees\Schema; 211388907fSMichael Schramm 221388907fSMichael Schramm/** 231388907fSMichael Schramm * Upgrade the database schema from version 32 to version 33. 241388907fSMichael Schramm */ 25c1010edaSGreg Roachclass Migration32 implements MigrationInterface 26c1010edaSGreg Roach{ 27362be83aSGreg Roach public function upgrade(): void 28c1010edaSGreg Roach { 29c9beb871SGreg Roach // These migrations have been merged into migration 0. 30c9beb871SGreg Roach // Direct upgrade from webtrees < 1.7.9 is not supported. 311388907fSMichael Schramm } 321388907fSMichael Schramm} 33