X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2Farchives%2Fpatch-interwiki.sql;h=57b794566f59e44a4ce019cf8ab2bc6977d3fd7f;hb=b0e7752a465b1cf87876c27c853bd182c14c8352;hp=90b162ef3d3098978a127f931ba65713f0493b40;hpb=fa8603c521f98bce49daeebdb7c4a4ca0f494a44;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/archives/patch-interwiki.sql b/maintenance/archives/patch-interwiki.sql index 90b162ef3d..57b794566f 100644 --- a/maintenance/archives/patch-interwiki.sql +++ b/maintenance/archives/patch-interwiki.sql @@ -4,17 +4,17 @@ CREATE TABLE /*$wgDBprefix*/interwiki ( -- The interwiki prefix, (e.g. "Meatball", or the language prefix "de") - iw_prefix char(32) NOT NULL, - + iw_prefix varchar(32) NOT NULL, + -- The URL of the wiki, with "$1" as a placeholder for an article name. -- Any spaces in the name will be transformed to underscores before -- insertion. - iw_url char(127) NOT NULL, - + iw_url blob NOT NULL, + -- A boolean value indicating whether the wiki is in this project -- (used, for example, to detect redirect loops) iw_local BOOL NOT NULL, - + UNIQUE KEY iw_prefix (iw_prefix) -) TYPE=InnoDB; +) /*$wgDBTableOptions*/;