mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-04 06:24:36 +01:00
22 lines
289 B
PHP
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';
|
|
}
|
|
}
|