From: Tim Starling Date: Fri, 10 Jun 2011 08:03:35 +0000 (+0000) Subject: Fix for r86741 which broke PG update due to the math table disappearing X-Git-Tag: 1.31.0-rc.0~29596 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=20ba4436cc78220b628d6112c48d5c64a9587ce9;p=lhc%2Fweb%2Fwiklou.git Fix for r86741 which broke PG update due to the math table disappearing --- diff --git a/includes/installer/PostgresUpdater.php b/includes/installer/PostgresUpdater.php index 272638ce75..2c9c05958c 100644 --- a/includes/installer/PostgresUpdater.php +++ b/includes/installer/PostgresUpdater.php @@ -130,8 +130,6 @@ class PostgresUpdater extends DatabaseUpdater { array( 'changeField', 'ipblocks', 'ipb_block_email', 'smallint', "CASE WHEN ipb_block_email=' ' THEN 0 ELSE ipb_block_email::smallint END DEFAULT 0" ), array( 'changeField', 'ipblocks', 'ipb_address', 'text', 'ipb_address::text' ), array( 'changeField', 'ipblocks', 'ipb_deleted', 'smallint', 'ipb_deleted::smallint DEFAULT 0' ), - array( 'changeField', 'math', 'math_inputhash', 'bytea', "decode(math_inputhash,'escape')" ), - array( 'changeField', 'math', 'math_outputhash', 'bytea', "decode(math_outputhash,'escape')" ), array( 'changeField', 'mwuser', 'user_token', 'text', '' ), array( 'changeField', 'mwuser', 'user_email_token', 'text', '' ), array( 'changeField', 'objectcache', 'keyname', 'text', '' ),