QueryTest_UserRank.php 265 Bytes
Newer Older
1 2 3
<?php
class QueryTest_UserRank extends Doctrine_Record
{
4
    public static function initMetadata($class)
5
    {        
6 7
        $class->setColumn('rankId', 'integer', 4, array('primary'));
        $class->setColumn('userId', 'integer', 4, array('primary'));
8 9
    }
}