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

10 lines
206 B
PHP

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