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

15 lines
319 B
PHP
Raw Normal View History

<?php
class Auth extends Doctrine_Record
{
public function setTableDefinition()
{
$this->hasColumn('roleid', 'integer', 10);
$this->hasColumn('name', 'string', 50);
}
public function setUp()
{
$this->hasOne('Role', array('local' => 'roleid', 'foreign' => 'id'));
}
}