16 lines
665 B
PHP
16 lines
665 B
PHP
|
<?php
|
||
|
class ValidatorTest_ClientModel extends Doctrine_Record {
|
||
|
public function setTableDefinition() {
|
||
|
|
||
|
$this->hasColumn('id', 'integer', 4, array('notnull' => true,
|
||
|
'primary' => true,
|
||
|
'autoincrement' => true,
|
||
|
'unsigned' => true));
|
||
|
$this->hasColumn('short_name', 'string', 32, array('notnull' => true, 'notblank', 'unique' => true));
|
||
|
}
|
||
|
|
||
|
public function setUp() {
|
||
|
$this->hasMany("ValidatorTest_AddressModel", array('local' => 'client_id', 'foreign' => 'address_id', 'refClass' => 'ValidatorTest_ClientToAddressModel'));
|
||
|
}
|
||
|
}
|