Merge pull request #1088 from pmoust/patch-2

pgsql: added 'bool' type (alias of 'boolean')
This commit is contained in:
Alexander Makarov
2013-10-28 06:06:54 -07:00

View File

@@ -34,6 +34,7 @@ class Schema extends \yii\db\Schema
public $typeMap = [
'abstime' => self::TYPE_TIMESTAMP,
'bit' => self::TYPE_STRING,
'bool' => self::TYPE_BOOLEAN,
'boolean' => self::TYPE_BOOLEAN,
'box' => self::TYPE_STRING,
'character' => self::TYPE_STRING,