xref: /webtrees/app/Schema/Migration34.php (revision c9beb871618c93e73b7fa1822beb196eeebd4dd5)
1168ff6f3Sric2016<?php
2168ff6f3Sric2016/**
3168ff6f3Sric2016 * webtrees: online genealogy
41062a142SGreg Roach * Copyright (C) 2018 webtrees development team
5168ff6f3Sric2016 * This program is free software: you can redistribute it and/or modify
6168ff6f3Sric2016 * it under the terms of the GNU General Public License as published by
7168ff6f3Sric2016 * the Free Software Foundation, either version 3 of the License, or
8168ff6f3Sric2016 * (at your option) any later version.
9168ff6f3Sric2016 * This program is distributed in the hope that it will be useful,
10168ff6f3Sric2016 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11168ff6f3Sric2016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12168ff6f3Sric2016 * GNU General Public License for more details.
13168ff6f3Sric2016 * You should have received a copy of the GNU General Public License
14168ff6f3Sric2016 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15168ff6f3Sric2016 */
16e7f56f2aSGreg Roachdeclare(strict_types=1);
17e7f56f2aSGreg Roach
18168ff6f3Sric2016namespace Fisharebest\Webtrees\Schema;
19168ff6f3Sric2016
20168ff6f3Sric2016/**
21*c9beb871SGreg Roach * Upgrade the database schema from version 34 to version 35 (webtrees 1.7.5).
22168ff6f3Sric2016 */
23c1010edaSGreg Roachclass Migration34 implements MigrationInterface
24c1010edaSGreg Roach{
25168ff6f3Sric2016    /**
26f36626dbSGreg Roach     * Upgrade to to the next version
2719d91378SGreg Roach     *
2819d91378SGreg Roach     * @return void
29168ff6f3Sric2016     */
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.
34168ff6f3Sric2016    }
35168ff6f3Sric2016}
36