mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-05 06:54:39 +01:00
29 lines
518 B
PHP
29 lines
518 B
PHP
<?php
|
|
/**
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license http://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']);
|
|
}
|
|
}
|