10 lines
256 B
PHP
10 lines
256 B
PHP
|
<?php
|
||
|
class QueryTest_UserRank extends Doctrine_Record
|
||
|
{
|
||
|
public function setTableDefinition()
|
||
|
{
|
||
|
$this->hasColumn('rankId', 'integer', 4, array('primary'));
|
||
|
$this->hasColumn('userId', 'integer', 4, array('primary'));
|
||
|
}
|
||
|
}
|