Changeset 4027
- Timestamp:
- 03/18/08 21:29:59 (16 months ago)
- Files:
-
- 1 modified
-
branches/0.10/lib/Doctrine/Import/Builder.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10/lib/Doctrine/Import/Builder.php
r4000 r4027 485 485 $unset = array('name', 'type', 'length'); 486 486 foreach ($options as $key => $value) { 487 if (in_array($key, $unset) || empty($value)) { 487 // Remove column elements which are specified above or are null 488 if (in_array($key, $unset) || is_null($value)) { 488 489 unset($options[$key]); 489 490 }