2007-09-02 18:24:49 +04:00
|
|
|
<?php
|
|
|
|
class ValidatorTest_ClientModel extends Doctrine_Record {
|
2008-02-04 00:29:57 +03:00
|
|
|
public static function initMetadata($class) {
|
|
|
|
$class->setColumn('id', 'integer', 4, array('notnull' => true,
|
2007-09-02 18:24:49 +04:00
|
|
|
'primary' => true,
|
|
|
|
'autoincrement' => true,
|
|
|
|
'unsigned' => true));
|
2008-02-04 00:29:57 +03:00
|
|
|
$class->setColumn('short_name', 'string', 32, array('notnull' => true, 'notblank', 'unique' => true));
|
|
|
|
$class->hasMany("ValidatorTest_AddressModel", array('local' => 'client_id', 'foreign' => 'address_id', 'refClass' => 'ValidatorTest_ClientToAddressModel'));
|
2007-09-02 18:24:49 +04:00
|
|
|
}
|
|
|
|
}
|