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

10 lines
256 B
PHP
Raw Normal View History

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