13 lines
475 B
PHP
13 lines
475 B
PHP
|
<?php
|
||
|
class EnumTest extends Doctrine_Record
|
||
|
{
|
||
|
public function setTableDefinition() {
|
||
|
$this->hasColumn('status', 'enum', 11, array('values' => array('open', 'verified', 'closed')));
|
||
|
$this->hasColumn('text', 'string');
|
||
|
}
|
||
|
public function setUp() {
|
||
|
$this->hasMany('EnumTest2 as Enum2', array('local' => 'id', 'foreign' => 'enum_test_id'));
|
||
|
$this->hasMany('EnumTest3 as Enum3', array('local' => 'text', 'foreign' => 'text'));
|
||
|
}
|
||
|
}
|