Changeset 4070

Show
Ignore:
Timestamp:
03/21/08 13:22:29 (16 months ago)
Author:
romanb
Message:

Fixed #859

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.10/lib/Doctrine/Table.php

    r4045 r4070  
    18841884                continue; 
    18851885            } 
    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) { 
    18871891                continue; 
    18881892            }