This commit is contained in:
Brion Vibber 2010-10-18 17:15:51 -07:00
parent 54bac12eb9
commit e44f1fe989
1 changed files with 4 additions and 1 deletions

View File

@ -83,11 +83,14 @@ class PgsqlSchema extends Schema
$field = array();
// ??
/*
list($type, $size) = $this->reverseMapType($row['udt_name']);
$field['type'] = $type;
if ($size !== null) {
$field['size'] = $size;
}
*/
$field['type'] = $row['udt_name'];
if ($type == 'char' || $type == 'varchar') {
if ($row['character_maximum_length'] !== null) {
@ -365,7 +368,7 @@ class PgsqlSchema extends Schema
if (!empty($column['size'])) {
$size = $column['size'];
if ($type == 'integer' &&
if ($type == 'int' &&
in_array($size, array('small', 'big'))) {
$type = $size . 'int';
}