1
0
mirror of synced 2024-12-15 15:46:02 +03:00
doctrine2/tests/models/forum/ForumAdministrator.php
2008-12-18 14:08:11 +00:00

15 lines
306 B
PHP

<?php
class ForumAdministrator extends ForumUser
{
public $accessLevel;
public static function initMetadata($mapping)
{
$mapping->mapField(array(
'fieldName' => 'accessLevel',
'columnName' => 'access_level',
'type' => 'integer'
));
}
}