This commit is contained in:
parent
d6fd3e16e0
commit
29f64470de
1 changed files with 1 additions and 1 deletions
|
@ -371,7 +371,7 @@ class Doctrine_DataDict_Pgsql extends Doctrine_DataDict
|
||||||
case 'varchar':
|
case 'varchar':
|
||||||
case 'gzip':
|
case 'gzip':
|
||||||
// TODO: what is the maximum VARCHAR length in pgsql ?
|
// TODO: what is the maximum VARCHAR length in pgsql ?
|
||||||
$length = (isset($field['length']) && $field['length'] && ! ($field['length'] > 1000000)) ? $field['length'] : null;
|
$length = (isset($field['length']) && $field['length'] && $field['length'] < 10000) ? $field['length'] : null;
|
||||||
|
|
||||||
$fixed = ((isset($field['fixed']) && $field['fixed']) || $field['type'] == 'char') ? true : false;
|
$fixed = ((isset($field['fixed']) && $field['fixed']) || $field['type'] == 'char') ? true : false;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue