BooleanTest.php 269 Bytes
Newer Older
1
<?php
2
class BooleanTest extends Doctrine_Entity {
3 4 5
    public static function initMetadata($class) {
        $class->setColumn('is_working', 'boolean');
        $class->setColumn('is_working_notnull', 'boolean', 1, array('default' => false, 'notnull' => true));
6 7
    }
}