Split down patch-comment-table.sql
[lhc/web/wiklou.git] / maintenance / archives / patch-linkscc.sql
index 49ffe58..684384f 100644 (file)
@@ -2,9 +2,11 @@
 -- linkscc table used to cache link lists in easier to digest form
 -- November 2003
 --
+-- Format later updated.
+--
 
-CREATE TABLE IF NOT EXISTS linkscc (
+CREATE TABLE /*$wgDBprefix*/linkscc (
   lcc_pageid INT UNSIGNED NOT NULL UNIQUE KEY,
-  lcc_title VARCHAR(255) NOT NULL UNIQUE KEY,
-  lcc_cacheobj MEDIUMBLOB NOT NULL);
+  lcc_cacheobj MEDIUMBLOB NOT NULL
 
+) /*$wgDBTableOptions*/;