FilterTest2.php 198 Bytes
Newer Older
1 2 3 4 5 6 7
<?php
class FilterTest2 extends Doctrine_Record {
    public function setTableDefinition() {
        $this->hasColumn('name', 'string',100);
        $this->hasColumn('test1_id', 'integer');
    }
}