2007-09-02 18:24:49 +04:00
|
|
|
<?php
|
2008-05-14 01:20:34 +04:00
|
|
|
class PolicyAsset extends Doctrine_Entity
|
2007-09-02 18:24:49 +04:00
|
|
|
{
|
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('policy_number', 'integer', 11);
|
|
|
|
$class->setColumn('value', 'float', 10, array ('notblank' => true,));
|
|
|
|
$class->hasOne('Policy', array('foreign' => 'policy_number',
|
2007-09-02 18:24:49 +04:00
|
|
|
'local' => 'policy_number'));
|
2008-02-04 00:29:57 +03:00
|
|
|
$class->addIndex('policy_number_index', array('fields' => array('policy_number')));
|
2007-09-02 18:24:49 +04:00
|
|
|
}
|
|
|
|
}
|