QueryTest_Entry.php 531 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<?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');
    }
}