Exemplo n.º 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getInventories()
 {
     return $this->hasMany(Inventory::className(), ['store_id' => 'store_id']);
 }
Exemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getInventory()
 {
     return $this->hasOne(Inventory::className(), ['inventory_id' => 'inventory_id']);
 }