CategoriesPage no more
[mediawiki.git] / maintenance / archives / patch-linkscc.sql
blob91d4da56bc84d7363241056e3d16f1042253fcee
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 ) TYPE=InnoDB;