From dbf35253b7b48071eb0c290e26d230c041849a73 Mon Sep 17 00:00:00 2001 From: Qiang Xue Date: Tue, 19 Nov 2013 10:25:07 -0500 Subject: [PATCH] Fixes #1237. --- framework/yii/db/pgsql/Schema.php | 1 + 1 file changed, 1 insertion(+) diff --git a/framework/yii/db/pgsql/Schema.php b/framework/yii/db/pgsql/Schema.php index 4925984..302843b 100644 --- a/framework/yii/db/pgsql/Schema.php +++ b/framework/yii/db/pgsql/Schema.php @@ -49,6 +49,7 @@ class Schema extends \yii\db\Schema 'inet' => self::TYPE_STRING, 'smallint' => self::TYPE_SMALLINT, 'int4' => self::TYPE_INTEGER, + 'int8' => self::TYPE_BIGINT, 'integer' => self::TYPE_INTEGER, 'bigint' => self::TYPE_BIGINT, 'interval' => self::TYPE_STRING,