root/tags/0.10.0/models/BarRecord.php
| Revision 2353, 345 bytes (checked in by meus, 16 months ago) |
|---|
| Line | |
|---|---|
| 1 | <?php |
| 2 | class BarRecord extends Doctrine_Record |
| 3 | { |
| 4 | public function setTableDefinition() |
| 5 | { |
| 6 | $this->setTableName('bar'); |
| 7 | $this->hasColumn('name', 'string', 200); |
| 8 | } |
| 9 | public function setUp() |
| 10 | { |
| 11 | $this->hasMany('FooRecord as Foo', array('local' => 'barId', 'foreign' => 'fooId', 'refClass' => 'FooBarRecord')); |
| 12 | } |
| 13 | } |
Note: See TracBrowser
for help on using the browser.