summaryrefslogtreecommitdiff
path: root/includes/db_schema
diff options
context:
space:
mode:
authorfisharebest <fisharebest@gmail.com>2010-10-09 13:11:41 +0000
committerfisharebest <fisharebest@gmail.com>2010-10-09 13:11:41 +0000
commit0713d43bf8c165baa2d428ada5561da7b098ff57 (patch)
tree8b2783fb98b885896fe61d46ad730fd579ce161f /includes/db_schema
parentc117352b22a1d4ad193c57d41b7dacd83c2e0fcc (diff)
downloadwebtrees-0713d43bf8c165baa2d428ada5561da7b098ff57.tar.gz
webtrees-0713d43bf8c165baa2d428ada5561da7b098ff57.tar.bz2
webtrees-0713d43bf8c165baa2d428ada5561da7b098ff57.zip
#622194 - MAX_ALLOWED_PACKET and MySQL >= 5.1.31
Diffstat (limited to 'includes/db_schema')
-rw-r--r--includes/db_schema/db_schema_2_3.php62
1 files changed, 62 insertions, 0 deletions
diff --git a/includes/db_schema/db_schema_2_3.php b/includes/db_schema/db_schema_2_3.php
new file mode 100644
index 0000000000..1991ed3a2a
--- /dev/null
+++ b/includes/db_schema/db_schema_2_3.php
@@ -0,0 +1,62 @@
+<?php
+/**
+ * Update the database schema from version 2 to version 3
+ * - create the wt_gedcom_chunk table to import gedcoms in
+ * blocks of data smaller than the max_allowed_packet restriction.
+ *
+ * The script should assume that it can be interrupted at
+ * any point, and be able to continue by re-running the script.
+ * Fatal errors, however, should be allowed to throw exceptions,
+ * which will be caught by the framework.
+ * It shouldn't do anything that might take more than a few
+ * seconds, for systems with low timeout values.
+ *
+ * phpGedView: Genealogy Viewer
+ * Copyright (C) 20010 Greg Roach
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * @version $Id$
+ */
+
+if (!defined('WT_WEBTREES')) {
+ header('HTTP/1.0 403 Forbidden');
+ exit;
+}
+
+define('WT_DB_SCHEMA_2_3', '');
+
+self::exec(
+ "CREATE TABLE IF NOT EXISTS `##gedcom_chunk` (".
+ " gedcom_chunk_id INTEGER AUTO_INCREMENT NOT NULL,".
+ " gedcom_id INTEGER NOT NULL,".
+ " chunk_data MEDIUMBLOB NOT NULL,".
+ " imported BOOLEAN NOT NULL DEFAULT FALSE,".
+ " PRIMARY KEY (gedcom_chunk_id),".
+ " KEY ix1 (gedcom_id, imported),".
+ " FOREIGN KEY fk1 (gedcom_id) REFERENCES `##gedcom` (gedcom_id)".
+ ") COLLATE utf8_unicode_ci ENGINE=InnoDB"
+);
+
+try {
+ self::exec(
+ "ALTER TABLE `##gedcom` DROP import_gedcom, DROP import_offset"
+ );
+} catch (PDOException $ex) {
+ // Perhaps we have already deleted these columns?
+}
+
+// Update the version to indicate sucess
+set_site_setting($schema_name, $next_version);