ORM_AccessControlsGroups.php 291 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
<?php
class ORM_AccessControlsGroups extends Doctrine_Record 
{
    public function setTableDefinition() 
    {
        $this->hasColumn('accessControlID', 'integer', 11, array('primary' => true)); 
        $this->hasColumn('accessGroupID', 'integer', 11, array('primary' => true));
    }
}