26 lines
871 B
PHP
26 lines
871 B
PHP
<?php
|
|
class Record_Country extends Doctrine_Record {
|
|
public function setTableDefinition() {
|
|
$this->hasColumn('name', 'string', 200);
|
|
}
|
|
public function setUp() {
|
|
$this->hasMany('Record_City as City', 'City.country_id');
|
|
}
|
|
}
|
|
class Record_City extends Doctrine_Record {
|
|
public function setTableDefinition() {
|
|
$this->hasColumn('name', 'string', 200);
|
|
$this->hasColumn('country_id', 'integer');
|
|
$this->hasColumn('district_id', 'integer');
|
|
}
|
|
public function setUp() {
|
|
$this->hasOne('Record_Country as Country', 'Record_City.country_id');
|
|
$this->hasOne('Record_District as District', 'Record_City.district_id');
|
|
}
|
|
}
|
|
class Record_District extends Doctrine_Record {
|
|
public function setTableDefinition() {
|
|
$this->hasColumn('name', 'string', 200);
|
|
}
|
|
}
|