Item::relations PHP Method

relations() public method

public relations ( ) : array
return array relational rules.
    public function relations()
    {
        // NOTE: you may need to adjust the relation name and the related
        // class name for the relations automatically generated below.
        return array('category' => array(self::BELONGS_TO, 'Category', 'category_id'), 'image' => array(self::HAS_MANY, 'ItemImg', 'item_id'), 'type' => array(self::BELONGS_TO, 'ItemType', 'type_id'));
    }