Disable pretty italics inside links. Now the italics inside a link alternate text...
[mediawiki.git] / maintenance / archives / patch-iwlinks.sql
blobc1c2595e625dc37d7baabef719e21e69304b5e9e
1 -- 
2 -- Track inline interwiki links
3 --
4 CREATE TABLE /*_*/iwlinks (
5   -- page_id of the referring page
6   iwl_from int unsigned NOT NULL default 0,
7   
8   -- Interwiki prefix code of the target
9   iwl_prefix varbinary(20) NOT NULL default '',
11   -- Title of the target, including namespace
12   iwl_title varchar(255) binary NOT NULL default ''
13 ) /*$wgDBTableOptions*/;
15 CREATE UNIQUE INDEX /*i*/iwl_from ON /*_*/iwlinks (iwl_from, iwl_prefix, iwl_title);
16 CREATE INDEX /*i*/iwl_prefix_from_title ON /*_*/iwlinks (iwl_prefix, iwl_from, iwl_title);