Files
yii2/tests/data/ar/Item.php
2022-08-03 12:32:18 +03:00

29 lines
520 B
PHP

<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yiiunit\data\ar;
/**
* Class Item.
*
* @property int $id
* @property string $name
* @property int $category_id
*/
class Item extends ActiveRecord
{
public static function tableName()
{
return 'item';
}
public function getCategory()
{
return $this->hasOne(Category::className(), ['id' => 'category_id']);
}
}