1
0
mirror of synced 2025-01-05 16:53:21 +03:00
doctrine2/tests/models/forum/ForumAdministrator.php

9 lines
168 B
PHP
Raw Normal View History

2008-02-11 22:56:26 +03:00
<?php
class ForumAdministrator extends ForumUser
{
public static function initMetadata($class)
{
$class->addMappedColumn('foo', 'string', 50);
}
}