xref: /webtrees/app/Schema/Migration24.php (revision d11be7027e34e3121be11cc025421873364403f9)
13bfb94b0SGreg Roach<?php
23976b470SGreg Roach
33bfb94b0SGreg Roach/**
43bfb94b0SGreg Roach * webtrees: online genealogy
5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
63bfb94b0SGreg Roach * This program is free software: you can redistribute it and/or modify
73bfb94b0SGreg Roach * it under the terms of the GNU General Public License as published by
83bfb94b0SGreg Roach * the Free Software Foundation, either version 3 of the License, or
93bfb94b0SGreg Roach * (at your option) any later version.
103bfb94b0SGreg Roach * This program is distributed in the hope that it will be useful,
113bfb94b0SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
123bfb94b0SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
133bfb94b0SGreg Roach * GNU General Public License for more details.
143bfb94b0SGreg 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/>.
163bfb94b0SGreg Roach */
17fcfa147eSGreg Roach
18e7f56f2aSGreg Roachdeclare(strict_types=1);
19e7f56f2aSGreg Roach
2076692c8bSGreg Roachnamespace Fisharebest\Webtrees\Schema;
2176692c8bSGreg Roach
223bfb94b0SGreg Roach/**
23c9beb871SGreg Roach * Upgrade the database schema from version 24 to version 25 (webtrees 1.4.2).
243bfb94b0SGreg Roach */
25c1010edaSGreg Roachclass Migration24 implements MigrationInterface
26c1010edaSGreg Roach{
2776692c8bSGreg Roach    /**
28d9efec4aSGreg Roach     * Upgrade to the next version.
2919d91378SGreg Roach     *
3019d91378SGreg Roach     * @return void
3176692c8bSGreg Roach     */
32362be83aSGreg Roach    public function upgrade(): void
33c1010edaSGreg Roach    {
34c9beb871SGreg Roach        // These migrations have been merged into migration 0.
35c9beb871SGreg Roach        // Direct upgrade from webtrees < 1.7.9 is not supported.
363bfb94b0SGreg Roach    }
373bfb94b0SGreg Roach}
38