<?php

/**
 * BaseReportingMethod
 * 
 * This class has been auto-generated by the Doctrine ORM Framework
 * 
 * @property integer $id
 * @property string $name
 * @property ReportTo $ReportTo
 * 
 * @method integer         getId()       Returns the current record's "id" value
 * @method string          getName()     Returns the current record's "name" value
 * @method ReportTo        getReportTo() Returns the current record's "ReportTo" value
 * @method ReportingMethod setId()       Sets the current record's "id" value
 * @method ReportingMethod setName()     Sets the current record's "name" value
 * @method ReportingMethod setReportTo() Sets the current record's "ReportTo" value
 * 
 * @package    orangehrm
 * @subpackage model\pim\base
 * @author     Your name here
 * @version    SVN: $Id: Builder.php 7490 2010-03-29 19:53:27Z jwage $
 */
abstract class BaseReportingMethod extends sfDoctrineRecord
{
    public function setTableDefinition()
    {
        $this->setTableName('ohrm_emp_reporting_method');
        $this->hasColumn('reporting_method_id as id', 'integer', 4, array(
             'type' => 'integer',
             'primary' => true,
             'autoincrement' => true,
             'length' => 4,
             ));
        $this->hasColumn('reporting_method_name as name', 'string', 100, array(
             'type' => 'string',
             'length' => 100,
             ));
    }

    public function setUp()
    {
        parent::setUp();
        $this->hasOne('ReportTo', array(
             'local' => 'id',
             'foreign' => 'reportingMethodId'));
    }
}