2007-09-02 14:24:49 +00:00
|
|
|
<?php
|
2008-05-13 21:20:34 +00:00
|
|
|
class Record_City extends Doctrine_Entity {
|
2008-02-03 21:29:57 +00:00
|
|
|
public static function initMetadata($class) {
|
|
|
|
$class->setColumn('name', 'string', 200);
|
|
|
|
$class->setColumn('country_id', 'integer');
|
|
|
|
$class->setColumn('district_id', 'integer');
|
|
|
|
$class->hasOne('Record_Country as Country', array('local' => 'country_id', 'foreign' => 'id'));
|
|
|
|
$class->hasOne('Record_District as District', array('local' => 'district_id', 'foreign' => 'id'));
|
2007-09-02 14:24:49 +00:00
|
|
|
}
|
|
|
|
}
|