1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/models/Role.php

14 lines
294 B
PHP

<?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'));
}
}