Example #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getDevice()
 {
     return $this->hasOne(Device::className(), ['id' => 'device_id']);
 }
Example #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getDevices()
 {
     return $this->hasMany(Device::className(), ['device_product_id' => 'id']);
 }