xref: /webtrees/app/Schema/Migration31.php (revision 52550490b7095dd69811f3ec21ed5a3ca1a8968d)
143e18ab2SGreg Roach<?php
23976b470SGreg Roach
343e18ab2SGreg Roach/**
443e18ab2SGreg Roach * webtrees: online genealogy
5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
643e18ab2SGreg Roach * This program is free software: you can redistribute it and/or modify
743e18ab2SGreg Roach * it under the terms of the GNU General Public License as published by
843e18ab2SGreg Roach * the Free Software Foundation, either version 3 of the License, or
943e18ab2SGreg Roach * (at your option) any later version.
1043e18ab2SGreg Roach * This program is distributed in the hope that it will be useful,
1143e18ab2SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
1243e18ab2SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1343e18ab2SGreg Roach * GNU General Public License for more details.
1443e18ab2SGreg 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/>.
1643e18ab2SGreg Roach */
17fcfa147eSGreg Roach
18e7f56f2aSGreg Roachdeclare(strict_types=1);
19e7f56f2aSGreg Roach
2043e18ab2SGreg Roachnamespace Fisharebest\Webtrees\Schema;
2143e18ab2SGreg Roach
2243e18ab2SGreg Roach/**
23c9beb871SGreg Roach * Upgrade the database schema from version 31 to version 32  (webtrees 1.7.2).
2443e18ab2SGreg Roach */
25c1010edaSGreg Roachclass Migration31 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.
3143e18ab2SGreg Roach    }
3243e18ab2SGreg Roach}
33