xref: /webtrees/app/Schema/Migration34.php (revision 52550490b7095dd69811f3ec21ed5a3ca1a8968d)
1168ff6f3Sric2016<?php
23976b470SGreg Roach
3168ff6f3Sric2016/**
4168ff6f3Sric2016 * webtrees: online genealogy
5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
6168ff6f3Sric2016 * This program is free software: you can redistribute it and/or modify
7168ff6f3Sric2016 * it under the terms of the GNU General Public License as published by
8168ff6f3Sric2016 * the Free Software Foundation, either version 3 of the License, or
9168ff6f3Sric2016 * (at your option) any later version.
10168ff6f3Sric2016 * This program is distributed in the hope that it will be useful,
11168ff6f3Sric2016 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12168ff6f3Sric2016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13168ff6f3Sric2016 * GNU General Public License for more details.
14168ff6f3Sric2016 * 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/>.
16168ff6f3Sric2016 */
17fcfa147eSGreg Roach
18e7f56f2aSGreg Roachdeclare(strict_types=1);
19e7f56f2aSGreg Roach
20168ff6f3Sric2016namespace Fisharebest\Webtrees\Schema;
21168ff6f3Sric2016
22168ff6f3Sric2016/**
23c9beb871SGreg Roach * Upgrade the database schema from version 34 to version 35 (webtrees 1.7.5).
24168ff6f3Sric2016 */
25c1010edaSGreg Roachclass Migration34 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.
31168ff6f3Sric2016    }
32168ff6f3Sric2016}
33