1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/tests_old/models/BooleanTest.php

8 lines
269 B
PHP

<?php
class BooleanTest extends Doctrine_Entity {
public static function initMetadata($class) {
$class->setColumn('is_working', 'boolean');
$class->setColumn('is_working_notnull', 'boolean', 1, array('default' => false, 'notnull' => true));
}
}