disallow user js for Special:Userlogin and Special:Resetpass too, just in case
[mediawiki.git] / maintenance / archives / patch-img_width.sql
blobc99bd46d6c4cc90880773d6bbc40ea946b4e21ad
1 -- Extra image metadata, added for 1.5
3 -- NOTE: as by patch-img_media_type.sql, the img_type
4 -- column is no longer used and has therefore be removed from this patch
6 ALTER TABLE /*$wgDBprefix*/image ADD (
7   img_width int(5) NOT NULL default 0,
8   img_height int(5) NOT NULL default 0,
9   img_bits int(5) NOT NULL default 0
12 ALTER TABLE /*$wgDBprefix*/oldimage ADD (
13   oi_width int(5) NOT NULL default 0,
14   oi_height int(5) NOT NULL default 0,
15   oi_bits int(3) NOT NULL default 0