[ Index ]

PHP Cross Reference of MediaWiki-1.24.0

title

Body

[close]

/maintenance/archives/ -> patch-img_width.sql (source)

   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  


Generated: Fri Nov 28 14:03:12 2014 Cross-referenced by PHPXref 0.7.1