10 lines
206 B
PHP
10 lines
206 B
PHP
<?php
|
|
class FooForeignlyOwned extends Doctrine_Record
|
|
{
|
|
public function setTableDefinition()
|
|
{
|
|
$this->hasColumn('name', 'string', 200);
|
|
$this->hasColumn('fooId', 'integer');
|
|
}
|
|
}
|