Role.php 294 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
<?php
class Role extends Doctrine_Record 
{
    public function setTableDefinition() 
    {
        $this->hasColumn('name', 'string', 20, array('unique' => true));
    }
    public function setUp() 
    {
        $this->hasMany('Auth', array('local' => 'id', 'foreign' => 'roleid'));
    }
}