2007-09-02 18:24:49 +04:00
|
|
|
<?php
|
2008-05-14 01:20:34 +04:00
|
|
|
class PolicyCodeN extends Doctrine_Entity {
|
2007-09-02 18:24:49 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
public static function initMetadata($class) {
|
|
|
|
$class->setTableName('policy_codes');
|
|
|
|
$class->setColumn('id', 'integer', 4, array('notnull' => true, 'primary' => true, 'autoincrement' => true));
|
|
|
|
$class->setColumn('code', 'integer', 4, array ( 'notnull' => true, 'notblank' => true,));
|
|
|
|
$class->setColumn('description', 'string', 4000, array ( 'notnull' => true, 'notblank' => true,));
|
2007-09-02 18:24:49 +04:00
|
|
|
}
|
|
|
|
}
|