Configuration - Custom primary key column.php 177 Bytes
Newer Older
doctrine's avatar
doctrine committed
1 2 3 4 5 6 7 8 9
<?php
// custom primary key column name

class Group extends Doctrine_Record {
    public function setUp() {
        $this->setPrimaryKeyColumn("group_id");
    }
}
?>