Location.php 356 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php
class Location extends Doctrine_Record
{
    public function setTableDefinition()
    {
        $this->hasColumn('lat', 'double', 10, array ());
        $this->hasColumn('lon', 'double', 10, array ());
    }

    public function setUp()
    {
        $this->hasMany('LocationI18n as LocationI18n', array('local' => 'id', 'foreign' => 'id'));
    }
}