2008-05-08 14:17:35 +00:00
|
|
|
<?php
|
2008-05-13 21:20:34 +00:00
|
|
|
class ForumBoard extends Doctrine_Entity {
|
2008-05-08 14:17:35 +00:00
|
|
|
public static function initMetadata($class) {
|
|
|
|
$class->mapColumn('position', 'integer');
|
|
|
|
$class->mapColumn('category_id', 'integer');
|
|
|
|
$class->hasOne('ForumCategory as category',
|
|
|
|
array('local' => 'category_id', 'foreign' => 'id'));
|
|
|
|
}
|
|
|
|
}
|