1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/tests_old/models/QueryTest_UserRank.php
2008-02-08 17:41:01 +00:00

10 lines
265 B
PHP

<?php
class QueryTest_UserRank extends Doctrine_Record
{
public static function initMetadata($class)
{
$class->setColumn('rankId', 'integer', 4, array('primary'));
$class->setColumn('userId', 'integer', 4, array('primary'));
}
}