2007-09-02 18:24:49 +04:00
|
|
|
<?php
|
2008-05-14 01:20:34 +04:00
|
|
|
class QueryTest_Board extends Doctrine_Entity
|
2007-09-02 18:24:49 +04:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Initializes the table definition.
|
|
|
|
*/
|
2008-02-04 00:29:57 +03:00
|
|
|
public static function initMetadata($class)
|
2007-09-02 18:24:49 +04:00
|
|
|
{
|
2008-02-04 00:29:57 +03:00
|
|
|
$class->setColumn('categoryId as categoryId', 'integer', 4,
|
2007-09-02 18:24:49 +04:00
|
|
|
array('notnull'));
|
2008-02-04 00:29:57 +03:00
|
|
|
$class->setColumn('name as name', 'string', 100,
|
2007-09-02 18:24:49 +04:00
|
|
|
array('notnull', 'unique'));
|
2008-02-04 00:29:57 +03:00
|
|
|
$class->setColumn('lastEntryId as lastEntryId', 'integer', 4,
|
2007-09-02 18:24:49 +04:00
|
|
|
array('default' => 0, 'notnull'));
|
2008-02-04 00:29:57 +03:00
|
|
|
$class->setColumn('position as position', 'integer', 4,
|
2007-09-02 18:24:49 +04:00
|
|
|
array('default' => 0, 'notnull'));
|
2008-02-04 00:29:57 +03:00
|
|
|
|
|
|
|
$class->hasOne('QueryTest_Category as category', array('local' => 'categoryId', 'foreign' => 'id'));
|
|
|
|
$class->hasOne('QueryTest_Entry as lastEntry', array('local' => 'lastEntryId', 'foreign' => 'id'));
|
2007-09-02 18:24:49 +04:00
|
|
|
}
|
|
|
|
}
|