2007-09-02 14:24:49 +00:00
|
|
|
<?php
|
2008-05-13 21:20:34 +00:00
|
|
|
class ValidatorTest_Person extends Doctrine_Entity {
|
2008-02-03 21:29:57 +00:00
|
|
|
public static function initMetadata($class) {
|
2008-02-23 22:04:39 +00:00
|
|
|
$class->setColumn('identifier', 'integer', 4,
|
|
|
|
array('validators' => array('notblank', 'unique')));
|
2008-02-03 21:29:57 +00:00
|
|
|
$class->setColumn('is_football_player', 'boolean');
|
2008-02-23 22:04:39 +00:00
|
|
|
$class->hasOne('ValidatorTest_FootballPlayer',
|
|
|
|
array('local' => 'id', 'foreign' => 'person_id'));
|
2007-09-02 14:24:49 +00:00
|
|
|
}
|
|
|
|
}
|