[ Index ] |
PHP Cross Reference of MediaWiki-1.24.0 |
[Summary view] [Print] [Text view]
1 -- Fix a bug from the 1.2 -> 1.3 upgrader by moving away the imagelinks table 2 -- and recreating it. 3 RENAME TABLE /*_*/imagelinks TO /*_*/imagelinks_old; 4 CREATE TABLE /*_*/imagelinks ( 5 il_from int unsigned NOT NULL default 0, 6 il_to varchar(255) binary NOT NULL default '' 7 ) /*$wgDBTableOptions*/; 8 9 CREATE UNIQUE INDEX /*i*/il_from ON /*_*/imagelinks (il_from,il_to); 10 CREATE UNIQUE INDEX /*i*/il_to ON /*_*/imagelinks (il_to,il_from); 11
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 14:03:12 2014 | Cross-referenced by PHPXref 0.7.1 |