1
0
mirror of synced 2025-01-09 10:37:09 +03:00
doctrine2/tests/models/cms/CmsUser.php

11 lines
299 B
PHP
Raw Normal View History

2008-02-09 02:20:35 +03:00
<?php
class CmsUser extends Doctrine_Record
{
public static function initMetadata($class)
{
2008-02-16 22:10:16 +03:00
$class->mapColumn('id', 'integer', 4, array('primary' => true, 'autoincrement' => true));
$class->mapColumn('username', 'string', 255);
$class->mapColumn('name', 'string', 255);
2008-02-09 02:20:35 +03:00
}
}