From: Mr. E23 Date: Sat, 8 Nov 2003 15:32:28 +0000 (+0000) Subject: Further link-cache related stuff. X-Git-Tag: 1.1.0~186 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=f45ca8f9aaa692d7df36c33963338a006f065abb;p=lhc%2Fweb%2Fwiklou.git Further link-cache related stuff. --- diff --git a/maintenance/tables.sql b/maintenance/tables.sql index 201a9462f8..7e99f5bb19 100644 --- a/maintenance/tables.sql +++ b/maintenance/tables.sql @@ -90,6 +90,13 @@ CREATE TABLE brokenlinks ( bl_to varchar(255) binary NOT NULL default '' ) TYPE=MyISAM; +DROP TABLE IF EXISTS linkscc; +CREATE TABLE linkscc ( + lcc_pageid INT UNSIGNED NOT NULL UNIQUE KEY, + lcc_title VARCHAR(255) NOT NULL UNIQUE KEY, + lcc_cacheobj MEDIUMBLOB NOT NULL +) TYPE=MyISAM; + DROP TABLE IF EXISTS imagelinks; CREATE TABLE imagelinks ( il_from varchar(255) binary NOT NULL default '', @@ -173,6 +180,7 @@ CREATE TABLE math ( UNIQUE KEY math_inputhash (math_inputhash) ) TYPE=MyISAM; + -- Table searchindex must be MyISAM for fulltext support DROP TABLE IF EXISTS searchindex; diff --git a/update.php b/update.php index 665359124d..b3c04ee94e 100644 --- a/update.php +++ b/update.php @@ -1,5 +1,18 @@