1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/models/QueryTest_Entry.php

23 lines
531 B
PHP

<?php
class QueryTest_Entry extends Doctrine_Record
{
/**
* Table structure.
*/
public function setTableDefinition()
{
$this->hasColumn('authorId', 'integer', 4,
array('notnull'));
$this->hasColumn('date', 'integer', 4,
array('notnull'));
}
/**
* Runtime definition of the relationships to other entities.
*/
public function setUp()
{
$this->hasOne('QueryTest_User as author', 'QueryTest_Entry.authorId');
}
}