1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace yiiunit\gii;
- use yii\db\ActiveRecord;
- class Profile extends ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return 'profile';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['description'], 'required'],
- [['description'], 'string', 'max' => 128]
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'description' => 'Description',
- ];
- }
- }
|