1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/models/Record_City.php

13 lines
448 B
PHP

<?php
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');
}
}