dirty hack to work around the one-space-at-beginning-required problem
[mediawiki.git] / maintenance / archives / patch-interwiki.sql
blob0fa40cdf2af1570a70811b1c1f5153e364ba42bb
1 -- Creates interwiki prefix<->url mapping table
2 -- used from 2003-08-21 dev version.
3 -- Import the default mappings from maintenance/interwiki.sql
5 CREATE TABLE interwiki (
6   iw_prefix char(32) NOT NULL,
7   iw_url char(127) NOT NULL,
8   iw_local BOOL NOT NULL,
9   UNIQUE KEY iw_prefix (iw_prefix)