12 lines
380 B
PHP
12 lines
380 B
PHP
|
<?php
|
||
|
class ValidatorTest_Person extends Doctrine_Record {
|
||
|
public function setTableDefinition() {
|
||
|
$this->hasColumn('identifier', 'integer', 4, array('notblank', 'unique'));
|
||
|
$this->hasColumn('is_football_player', 'boolean');
|
||
|
}
|
||
|
|
||
|
public function setUp() {
|
||
|
$this->ownsOne('ValidatorTest_FootballPlayer', 'ValidatorTest_FootballPlayer.person_id');
|
||
|
}
|
||
|
}
|