This commit is contained in:
parent
aa1aa84b52
commit
c045174fde
1 changed files with 1 additions and 5 deletions
|
@ -701,7 +701,7 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
|
||||||
|
|
||||||
|
|
||||||
if ($length == null &&
|
if ($length == null &&
|
||||||
$type === 'string' ||
|
$type === 'string' ||
|
||||||
$type === 'clob' ||
|
$type === 'clob' ||
|
||||||
$type === 'integer' ||
|
$type === 'integer' ||
|
||||||
$type === 'blob' ||
|
$type === 'blob' ||
|
||||||
|
@ -710,10 +710,6 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
|
||||||
$length = 2147483647;
|
$length = 2147483647;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((string) (int) $length !== (string) $length) {
|
|
||||||
throw new Doctrine_Table_Exception('Invalid argument given for column length');
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->columns[$name] = $options;
|
$this->columns[$name] = $options;
|
||||||
$this->columns[$name]['type'] = $type;
|
$this->columns[$name]['type'] = $type;
|
||||||
$this->columns[$name]['length'] = $length;
|
$this->columns[$name]['length'] = $length;
|
||||||
|
|
Loading…
Add table
Reference in a new issue