1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/models/location.php
2007-01-09 22:59:15 +00:00

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);
}
}