FooBarRecord.php 262 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
<?php
class FooBarRecord extends Doctrine_Record
{
    public function setTableDefinition()
    {
        $this->hasColumn('fooId', 'integer', null, array('primary' => true));
        $this->hasColumn('barId', 'integer', null, array('primary' => true));
    }
}