12 lines
290 B
PHP
12 lines
290 B
PHP
|
<?php
|
||
|
class ForeignKeyTest2 extends Doctrine_Record
|
||
|
{
|
||
|
public function setTableDefinition()
|
||
|
{
|
||
|
$this->hasColumn('name', 'string', null);
|
||
|
$this->hasColumn('foreignkey', 'integer');
|
||
|
|
||
|
$this->hasOne('ForeignKeyTest', 'ForeignKeyTest2.foreignkey');
|
||
|
}
|
||
|
}
|