Merge "Re add wpScrolltop id in EditPage"
[lhc/web/wiklou.git] / maintenance / archives / patch-img_width.sql
1 -- Extra image metadata, added for 1.5
2
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
5
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
10 );
11
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
16 );
17
18