11b49861aSGreg Roach<?php 21b49861aSGreg Roach/** 31b49861aSGreg Roach * webtrees: online genealogy 41062a142SGreg Roach * Copyright (C) 2018 webtrees development team 51b49861aSGreg Roach * This program is free software: you can redistribute it and/or modify 61b49861aSGreg Roach * it under the terms of the GNU General Public License as published by 71b49861aSGreg Roach * the Free Software Foundation, either version 3 of the License, or 81b49861aSGreg Roach * (at your option) any later version. 91b49861aSGreg Roach * This program is distributed in the hope that it will be useful, 101b49861aSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 111b49861aSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 121b49861aSGreg Roach * GNU General Public License for more details. 131b49861aSGreg Roach * You should have received a copy of the GNU General Public License 141b49861aSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 151b49861aSGreg Roach */ 16e7f56f2aSGreg Roachdeclare(strict_types=1); 17e7f56f2aSGreg Roach 181b49861aSGreg Roachnamespace Fisharebest\Webtrees\Schema; 191b49861aSGreg Roach 201b49861aSGreg Roach/** 21*c9beb871SGreg Roach * Upgrade the database schema from version 33 to version 34 (webtrees 1.7.3). 221b49861aSGreg Roach */ 23c1010edaSGreg Roachclass Migration33 implements MigrationInterface 24c1010edaSGreg Roach{ 251b49861aSGreg Roach /** 261b49861aSGreg Roach * Upgrade to to the next version 2719d91378SGreg Roach * 2819d91378SGreg Roach * @return void 291b49861aSGreg Roach */ 30362be83aSGreg Roach public function upgrade(): void 31c1010edaSGreg Roach { 32*c9beb871SGreg Roach // These migrations have been merged into migration 0. 33*c9beb871SGreg Roach // Direct upgrade from webtrees < 1.7.9 is not supported. 341b49861aSGreg Roach } 351b49861aSGreg Roach} 36