]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blobdiff - maintenance/archives/patch-pagelinks.sql
Mediawiki 1.15.3-scripts
[autoinstalls/mediawiki.git] / maintenance / archives / patch-pagelinks.sql
index 7240cff9678d73cf792d00d150135f789410f3b2..118592fb2b9d8ec0ea960e9ece66c47d94c7a8cf 100644 (file)
@@ -18,7 +18,7 @@
 --
 CREATE TABLE /*$wgDBprefix*/pagelinks (
   -- Key to the page_id of the page containing the link.
-  pl_from int(8) unsigned NOT NULL default '0',
+  pl_from int unsigned NOT NULL default '0',
   
   -- Key to page_namespace/page_title of the target page.
   -- The target page may or may not exist, and due to renames
@@ -30,7 +30,7 @@ CREATE TABLE /*$wgDBprefix*/pagelinks (
   UNIQUE KEY pl_from(pl_from,pl_namespace,pl_title),
   KEY (pl_namespace,pl_title)
 
-) TYPE=InnoDB;
+) /*$wgDBTableOptions*/;
 
 
 -- Import existing-page links