15fe1add5SGreg Roach<?php 23976b470SGreg Roach 35fe1add5SGreg Roach/** 45fe1add5SGreg Roach * webtrees: online genealogy 5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 65fe1add5SGreg Roach * This program is free software: you can redistribute it and/or modify 75fe1add5SGreg Roach * it under the terms of the GNU General Public License as published by 85fe1add5SGreg Roach * the Free Software Foundation, either version 3 of the License, or 95fe1add5SGreg Roach * (at your option) any later version. 105fe1add5SGreg Roach * This program is distributed in the hope that it will be useful, 115fe1add5SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 125fe1add5SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 135fe1add5SGreg Roach * GNU General Public License for more details. 145fe1add5SGreg Roach * 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/>. 165fe1add5SGreg Roach */ 17fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 19e7f56f2aSGreg Roach 205fe1add5SGreg Roachnamespace Fisharebest\Webtrees\Schema; 215fe1add5SGreg Roach 225fe1add5SGreg Roach/** 235fe1add5SGreg Roach * Upgrade the database schema from version 38 to version 39. 245fe1add5SGreg Roach */ 25c1010edaSGreg Roachclass Migration38 implements MigrationInterface 26c1010edaSGreg Roach{ 27362be83aSGreg Roach public function upgrade(): void 28c1010edaSGreg Roach { 29b344f1f7SGreg Roach // This module previously created the table placelocation - which is now deleted in migration 44. 305fe1add5SGreg Roach } 315fe1add5SGreg Roach} 32