From: garvinhicking Date: Fri, 30 Sep 2005 11:38:49 +0000 (+0000) Subject: Oops. Fix postgres bug. X-Git-Tag: 0.9~108 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=b1ada8e776abf2258365734b4d57e4e2bca8bf78;p=s9y.git Oops. Fix postgres bug. --- diff --git a/include/db/postgres.inc.php b/include/db/postgres.inc.php index b07f01d..744f55d 100644 --- a/include/db/postgres.inc.php +++ b/include/db/postgres.inc.php @@ -160,7 +160,7 @@ function &serendipity_db_query($sql, $single = false, $result_type = "both", $re function serendipity_db_schema_import($query) { static $search = array('{AUTOINCREMENT}', '{PRIMARY}', '{UNSIGNED}', - '{FULLTEXT}', '{BOOLEAN}', 'int(1)', 'int(10)', 'int(11)', 'int(4)', '{UTF_8}); + '{FULLTEXT}', '{BOOLEAN}', 'int(1)', 'int(10)', 'int(11)', 'int(4)', '{UTF_8}'); static $replace = array('SERIAL', 'primary key', '', '', 'BOOLEAN NOT NULL', 'int2', 'int4', 'int4', 'int4', '');