From: Brion Vibber Date: Tue, 5 Jul 2005 03:08:29 +0000 (+0000) Subject: Somebody forgot to update the interwiki table definition... X-Git-Tag: 1.5.0beta2~6 X-Git-Url: http://git.cyclocoop.org/%24self?a=commitdiff_plain;h=aa9bccd696f9aa48196b7c70a803565179fefdb2;p=lhc%2Fweb%2Fwiklou.git Somebody forgot to update the interwiki table definition... --- diff --git a/maintenance/tables.sql b/maintenance/tables.sql index 6ce0173aa1..e9301830f9 100644 --- a/maintenance/tables.sql +++ b/maintenance/tables.sql @@ -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;