Profile.php 289 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<?php
/**
 * @author Carsten Brandt <mail@cebe.cc>
 */

namespace yiiunit\data\ar;

/**
 * Class Profile
 *
 * @property integer $id
 * @property string $description
 *
 */
class Profile extends ActiveRecord
{
17 18
    public static function tableName()
    {
19
        return 'profile';
20
    }
AlexGx committed
21
}