Role.php 263 Bytes
Newer Older
1 2 3
<?php
class Role extends Doctrine_Record 
{
4
    public static function initMetadata($class) 
5
    {
6 7
        $class->setColumn('name', 'string', 20, array('unique' => true));
        $class->hasMany('Auth', array('local' => 'id', 'foreign' => 'roleid'));
8
    }
9

10 11
}