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

15 lines
356 B
PHP
Raw Normal View History

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