2007-09-02 14:24:49 +00:00
|
|
|
<?php
|
|
|
|
class QueryTest_Entry extends Doctrine_Record
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Table structure.
|
|
|
|
*/
|
2008-02-03 21:29:57 +00:00
|
|
|
public static function initMetadata($class)
|
2007-09-02 14:24:49 +00:00
|
|
|
{
|
2008-02-03 21:29:57 +00:00
|
|
|
$class->setColumn('authorId', 'integer', 4,
|
2007-09-02 14:24:49 +00:00
|
|
|
array('notnull'));
|
2008-02-03 21:29:57 +00:00
|
|
|
$class->setColumn('date', 'integer', 4,
|
2007-09-02 14:24:49 +00:00
|
|
|
array('notnull'));
|
2008-02-03 21:29:57 +00:00
|
|
|
$class->hasOne('QueryTest_User as author', array('local' => 'authorId', 'foreign' => 'id'));
|
2007-09-02 14:24:49 +00:00
|
|
|
}
|
|
|
|
}
|