1
0
mirror of synced 2025-03-01 10:23:22 +03:00

10 lines
271 B
PHP

<?php
class Record_Country extends Doctrine_Entity {
public static function initMetadata($class) {
$class->setColumn('name', 'string', 200);
$class->hasMany('Record_City as City', array('local' => 'id', 'foreign' => 'country_id'));
}
}