diff --git a/includes/database/pgsql/install.inc b/includes/database/pgsql/install.inc
index bfd69d4..2cf8567 100644
--- a/includes/database/pgsql/install.inc
+++ b/includes/database/pgsql/install.inc
@@ -64,12 +64,12 @@ class DatabaseTasks_pgsql extends DatabaseTasks {
   function checkPHPVersion() {
     try {
       $txn = db_transaction();
-      db_query("CREATE TABLE test_php_version ( test_int INT NOT NULL )");
-      // See http://bugs.php.net/bug.php?id=48924 as to why this query may 
+      db_query("CREATE TABLE test_php_version ( test_int BIGINT NOT NULL )");
+      // See http://bugs.php.net/bug.php?id=48924 as to why this query may
       // fail. The error will throw an Exception so there is no need to test to
       // see if the row inserted or not.
       db_query("INSERT INTO test_php_version ( test_int ) VALUES (:big_int)", array(':big_int' => PHP_INT_MAX + 1));
-      db_query("DROP TABLE test_php_version"); 
+      db_query("DROP TABLE test_php_version");
       $this->pass(st('PHP is at the correct version to run on PostgreSQL.'));
     }
     catch (Exception $e) {
