Fix regression in I24d9b16
[mediawiki.git] / maintenance / archives / patch-linkscc.sql
blob684384f5052e5789b7d1a165caad2c638cff4668
1 --
2 -- linkscc table used to cache link lists in easier to digest form
3 -- November 2003
4 --
5 -- Format later updated.
6 --
8 CREATE TABLE /*$wgDBprefix*/linkscc (
9   lcc_pageid INT UNSIGNED NOT NULL UNIQUE KEY,
10   lcc_cacheobj MEDIUMBLOB NOT NULL
12 ) /*$wgDBTableOptions*/;