From b1ada8e776abf2258365734b4d57e4e2bca8bf78 Mon Sep 17 00:00:00 2001 From: garvinhicking Date: Fri, 30 Sep 2005 11:38:49 +0000 Subject: [PATCH] Oops. Fix postgres bug. --- include/db/postgres.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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', ''); -- 2.39.5