Merge "Set Agora font stack to mw-ui-container in Vector"
[mediawiki.git] / maintenance / archives / patch-img_width.sql
blob06889ea6d7e3ac88e4c409086ca80466394dc91b
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 NOT NULL default 0,
8   img_height int NOT NULL default 0,
9   img_bits int NOT NULL default 0
12 ALTER TABLE /*$wgDBprefix*/oldimage ADD (
13   oi_width int NOT NULL default 0,
14   oi_height int NOT NULL default 0,
15   oi_bits int NOT NULL default 0