QueryTest_Item.php 204 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
<?php
class QueryTest_Item extends Doctrine_Record
{
    public function setTableDefinition()
    {
        $this->hasColumn('price', 'decimal');
        $this->hasColumn('quantity', 'integer');
    }
}