From f45ca8f9aaa692d7df36c33963338a006f065abb Mon Sep 17 00:00:00 2001 From: "Mr. E23" Date: Sat, 8 Nov 2003 15:32:28 +0000 Subject: [PATCH] Further link-cache related stuff. --- maintenance/tables.sql | 8 ++++++++ update.php | 13 +++++++++++++ 2 files changed, 21 insertions(+) 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 @@