From aa9bccd696f9aa48196b7c70a803565179fefdb2 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 5 Jul 2005 03:08:29 +0000 Subject: [PATCH] Somebody forgot to update the interwiki table definition... --- maintenance/tables.sql | 3 +++ 1 file changed, 3 insertions(+) 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; -- 2.20.1