Changeset 4070
- Timestamp:
- 03/21/08 13:22:29 (16 months ago)
- Files:
-
- 1 modified
-
branches/0.10/lib/Doctrine/Table.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10/lib/Doctrine/Table.php
r4045 r4070 1884 1884 continue; 1885 1885 } 1886 if (strtolower($name) === 'notnull' && isset($this->_columns[$columnName]['autoincrement'])) { 1886 if ($name == 'notnull' && isset($this->_columns[$columnName]['autoincrement'])) { 1887 continue; 1888 } 1889 // skip it if it's explicitly set to FALSE (i.e. notnull => false) 1890 if ($args === false) { 1887 1891 continue; 1888 1892 }