1
0
mirror of synced 2024-12-15 07:36:03 +03:00
doctrine2/tests/models/forum/ForumAdministrator.php

15 lines
306 B
PHP
Raw Normal View History

2008-02-11 22:56:26 +03:00
<?php
class ForumAdministrator extends ForumUser
{
public $accessLevel;
public static function initMetadata($mapping)
2008-02-11 22:56:26 +03:00
{
$mapping->mapField(array(
'fieldName' => 'accessLevel',
'columnName' => 'access_level',
'type' => 'integer'
));
2008-02-11 22:56:26 +03:00
}
}