2007-09-02 14:24:49 +00:00
|
|
|
<?php
|
|
|
|
class FooBarRecord extends Doctrine_Record
|
|
|
|
{
|
2008-02-03 21:29:57 +00:00
|
|
|
public static function initMetadata($class)
|
2007-09-02 14:24:49 +00:00
|
|
|
{
|
2008-02-03 21:29:57 +00:00
|
|
|
$class->setColumn('fooId', 'integer', null, array('primary' => true));
|
|
|
|
$class->setColumn('barId', 'integer', null, array('primary' => true));
|
2007-09-02 14:24:49 +00:00
|
|
|
}
|
|
|
|
}
|