Changeset 4450 for branches/0.11/lib

Show
Ignore:
Timestamp:
05/26/08 22:07:39 (8 months ago)
Author:
lsmith
Message:

- do not allow null's in the deleted column by default (#1083)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.11/lib/Doctrine/Template/SoftDelete.php

    r4439 r4450  
    4242                                'type'          =>  'boolean', 
    4343                                'length'        =>  1, 
    44                                 'options'       =>  array('default' => false), 
     44                                'options'       =>  array('default' => false, 
     45                                                          'notnull' => true, 
     46                                                          ), 
    4547    ); 
    4648 
     
    4850     * __construct 
    4951     * 
    50      * @param string $array  
     52     * @param string $array 
    5153     * @return void 
    5254     */