From: Evan Prodromou Date: Sat, 28 May 2005 20:57:20 +0000 (+0000) Subject: Removed commented-out lines and commas that broke patch. X-Git-Tag: 1.5.0alpha2~53 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/%7B%7B%20url_for%28%27admin_users%27%29%20%7D%7D?a=commitdiff_plain;h=e2bda0bef6f01d26034e75bc4f6d42dd0241e686;p=lhc%2Fweb%2Fwiklou.git Removed commented-out lines and commas that broke patch. --- diff --git a/maintenance/archives/patch-img_width.sql b/maintenance/archives/patch-img_width.sql index a705dbdbb1..c99bd46d6c 100644 --- a/maintenance/archives/patch-img_width.sql +++ b/maintenance/archives/patch-img_width.sql @@ -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 );