Record_Country.php 268 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
<?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');
    }
}