Removed commented-out lines and commas that broke patch.
authorEvan Prodromou <evanprodromou@users.mediawiki.org>
Sat, 28 May 2005 20:57:20 +0000 (20:57 +0000)
committerEvan Prodromou <evanprodromou@users.mediawiki.org>
Sat, 28 May 2005 20:57:20 +0000 (20:57 +0000)
maintenance/archives/patch-img_width.sql

index a705dbd..c99bd46 100644 (file)
@@ -6,15 +6,13 @@
 ALTER TABLE /*$wgDBprefix*/image ADD (
   img_width int(5) NOT NULL default 0,
   img_height int(5) NOT NULL default 0,
-  img_bits int(5) NOT NULL default 0,
-  -- img_type int(5) NOT NULL default -1
+  img_bits int(5) NOT NULL default 0
 );
 
 ALTER TABLE /*$wgDBprefix*/oldimage ADD (
   oi_width int(5) NOT NULL default 0,
   oi_height int(5) NOT NULL default 0,
-  oi_bits int(3) NOT NULL default 0,
-  -- oi_type int(3) NOT NULL default 0
+  oi_bits int(3) NOT NULL default 0
 );