/** * @return \yii\db\ActiveQuery */ public function getCatchment() { return $this->hasOne(\app\models\Catchment::className(), ['id' => 'catchmentid']); }
/** * @return \yii\db\ActiveQuery */ public function getCatchments() { return $this->hasMany(\app\models\Catchment::className(), ['userid' => 'id']); }