Somebody forgot to update the interwiki table definition...
authorBrion Vibber <brion@users.mediawiki.org>
Tue, 5 Jul 2005 03:08:29 +0000 (03:08 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Tue, 5 Jul 2005 03:08:29 +0000 (03:08 +0000)
maintenance/tables.sql

index 6ce0173..e930183 100644 (file)
@@ -736,6 +736,9 @@ CREATE TABLE /*$wgDBprefix*/interwiki (
   -- (used, for example, to detect redirect loops)
   iw_local BOOL NOT NULL,
   
+  -- Boolean value indicating whether interwiki transclusions are allowed.
+  iw_trans TINYINT(1) NOT NULL DEFAULT 0,
+  
   UNIQUE KEY iw_prefix (iw_prefix)
 
 ) TYPE=InnoDB;