]> git.mjollnir.org Git - s9y.git/commitdiff
Oops. Fix postgres bug.
authorgarvinhicking <garvinhicking>
Fri, 30 Sep 2005 11:38:49 +0000 (11:38 +0000)
committergarvinhicking <garvinhicking>
Fri, 30 Sep 2005 11:38:49 +0000 (11:38 +0000)
include/db/postgres.inc.php

index b07f01da9ecc6630c0d31a9bf887c9c4a132d98a..744f55d7eca8002f57c9da8c499c1423b0302325 100644 (file)
@@ -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', '');