1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/tests_old/models/QueryTest_UserRank.php

10 lines
265 B
PHP

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