From dff3c17ffdd4494101f31580dc1aa0afe355a591 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 19 Nov 2003 01:37:49 +0000 Subject: [PATCH] Add manual patch for linkscc table creation --- maintenance/archives/patch-linkscc.sql | 10 ++++++++++ maintenance/archives/patch-list.txt | 4 ++++ 2 files changed, 14 insertions(+) create mode 100644 maintenance/archives/patch-linkscc.sql diff --git a/maintenance/archives/patch-linkscc.sql b/maintenance/archives/patch-linkscc.sql new file mode 100644 index 0000000000..49ffe5800c --- /dev/null +++ b/maintenance/archives/patch-linkscc.sql @@ -0,0 +1,10 @@ +-- +-- linkscc table used to cache link lists in easier to digest form +-- November 2003 +-- + +CREATE TABLE IF NOT EXISTS linkscc ( + lcc_pageid INT UNSIGNED NOT NULL UNIQUE KEY, + lcc_title VARCHAR(255) NOT NULL UNIQUE KEY, + lcc_cacheobj MEDIUMBLOB NOT NULL); + diff --git a/maintenance/archives/patch-list.txt b/maintenance/archives/patch-list.txt index 15bf1486e5..9829b1107c 100644 --- a/maintenance/archives/patch-list.txt +++ b/maintenance/archives/patch-list.txt @@ -137,3 +137,7 @@ plain interwiki.sql to load up the default set of mappings. * 2003-09: Ipblocks auto-expiry update patch-ipblocks.sql + +* 2003-11: linkscc table creation +patch-linkscc.sql + -- 2.20.1