Files
yii2/tests/data/ar/Profile.php
2015-04-16 12:10:01 +03:00

22 lines
289 B
PHP

<?php
/**
* @author Carsten Brandt <mail@cebe.cc>
*/
namespace yiiunit\data\ar;
/**
* Class Profile
*
* @property integer $id
* @property string $description
*
*/
class Profile extends ActiveRecord
{
public static function tableName()
{
return 'profile';
}
}