CPK_Association.php 233 Bytes
Newer Older
1 2 3 4 5 6 7
<?php
class CPK_Association extends Doctrine_Record {
    public function setTableDefinition() {
        $this->hasColumn('test1_id', 'integer', 11, 'primary');
        $this->hasColumn('test2_id', 'integer', 11, 'primary');
    }
}