From: Brion Vibber Date: Wed, 19 Nov 2003 01:37:49 +0000 (+0000) Subject: Add manual patch for linkscc table creation X-Git-Tag: 1.1.0~136 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/journal.php?a=commitdiff_plain;h=dff3c17ffdd4494101f31580dc1aa0afe355a591;p=lhc%2Fweb%2Fwiklou.git Add manual patch for linkscc table creation --- 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 +