xref: /webtrees/app/Schema/Migration2.php (revision 1062a1429914c995339f502856821457aa975a5a)
13bfb94b0SGreg Roach<?php
23bfb94b0SGreg Roach/**
33bfb94b0SGreg Roach * webtrees: online genealogy
4*1062a142SGreg Roach * Copyright (C) 2018 webtrees development team
53bfb94b0SGreg Roach * This program is free software: you can redistribute it and/or modify
63bfb94b0SGreg Roach * it under the terms of the GNU General Public License as published by
73bfb94b0SGreg Roach * the Free Software Foundation, either version 3 of the License, or
83bfb94b0SGreg Roach * (at your option) any later version.
93bfb94b0SGreg Roach * This program is distributed in the hope that it will be useful,
103bfb94b0SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
113bfb94b0SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
123bfb94b0SGreg Roach * GNU General Public License for more details.
133bfb94b0SGreg Roach * You should have received a copy of the GNU General Public License
143bfb94b0SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
153bfb94b0SGreg Roach */
1676692c8bSGreg Roachnamespace Fisharebest\Webtrees\Schema;
1776692c8bSGreg Roach
183bfb94b0SGreg Roachuse Fisharebest\Webtrees\Database;
19bd52fa32SGreg Roachuse Fisharebest\Webtrees\DebugBar;
203bfb94b0SGreg Roachuse PDOException;
213bfb94b0SGreg Roach
223bfb94b0SGreg Roach/**
2376692c8bSGreg Roach * Upgrade the database schema from version 2 to version 2.
243bfb94b0SGreg Roach */
253bfb94b0SGreg Roachclass Migration2 implements MigrationInterface {
2676692c8bSGreg Roach	/**
2776692c8bSGreg Roach	 * Upgrade to to the next version
2876692c8bSGreg Roach	 */
293bfb94b0SGreg Roach	public function upgrade() {
303bfb94b0SGreg Roach		// - create the wt_gedcom_chunk table to import gedcoms in
313bfb94b0SGreg Roach		// blocks of data smaller than the max_allowed_packet restriction.
323bfb94b0SGreg Roach
333bfb94b0SGreg Roach		Database::exec(
343bfb94b0SGreg Roach			"CREATE TABLE IF NOT EXISTS `##gedcom_chunk` (" .
353bfb94b0SGreg Roach			" gedcom_chunk_id INTEGER AUTO_INCREMENT NOT NULL," .
363bfb94b0SGreg Roach			" gedcom_id       INTEGER                NOT NULL," .
373bfb94b0SGreg Roach			" chunk_data      MEDIUMBLOB             NOT NULL," .
383bfb94b0SGreg Roach			" imported        BOOLEAN                NOT NULL DEFAULT FALSE," .
393bfb94b0SGreg Roach			" PRIMARY KEY     (gedcom_chunk_id)," .
403bfb94b0SGreg Roach			"         KEY ix1 (gedcom_id, imported)," .
41159e1003SMatt N			" FOREIGN KEY `##gedcom_chunk_fk1` (gedcom_id) REFERENCES `##gedcom` (gedcom_id)" .
423bfb94b0SGreg Roach			") COLLATE utf8_unicode_ci ENGINE=InnoDB"
433bfb94b0SGreg Roach		);
443bfb94b0SGreg Roach
453bfb94b0SGreg Roach		try {
463bfb94b0SGreg Roach			Database::exec(
473bfb94b0SGreg Roach				"ALTER TABLE `##gedcom` DROP import_gedcom, DROP import_offset"
483bfb94b0SGreg Roach			);
493bfb94b0SGreg Roach		} catch (PDOException $ex) {
50bd52fa32SGreg Roach			DebugBar::addThrowable($ex);
51bd52fa32SGreg Roach
523bfb94b0SGreg Roach			// Perhaps we have already deleted these columns?
533bfb94b0SGreg Roach		}
543bfb94b0SGreg Roach	}
553bfb94b0SGreg Roach}
56