11 lines
207 B
PHP
11 lines
207 B
PHP
|
<?php
|
||
|
class RelationTest extends Doctrine_Record
|
||
|
{
|
||
|
public function setTableDefinition()
|
||
|
{
|
||
|
$this->hasColumn('name', 'string', 200);
|
||
|
$this->hasColumn('child_id', 'integer');
|
||
|
}
|
||
|
}
|
||
|
|