added /*$wgDBprefix*/ in various places, to support upgrading from old prefixed datab...
[lhc/web/wiklou.git] / maintenance / archives / patch-interwiki.sql
1 -- Creates interwiki prefix<->url mapping table
2 -- used from 2003-08-21 dev version.
3 -- Import the default mappings from maintenance/interwiki.sql
4
5 CREATE TABLE /*$wgDBprefix*/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)
10 );
11