1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/models/PolicyCodeN.php

15 lines
541 B
PHP
Raw Normal View History

<?php
class PolicyCodeN extends Doctrine_Record {
public function setTableDefinition(){
$this->setTableName('policy_codes');
$this->hasColumn('id', 'integer', 4, array('notnull' => true, 'primary' => true, 'autoincrement' => true));
$this->hasColumn('code', 'integer', 4, array ( 'notnull' => true, 'notblank' => true,));
$this->hasColumn('description', 'string', 4000, array ( 'notnull' => true, 'notblank' => true,));
}
public function setUp(){
# $this->index('code', array('fields' => 'code'));
}
}