/** * @return \yii\db\ActiveQuery */ public function getCountry() { return $this->hasOne(Country::className(), ['countryid' => 'countryid']); }
/** * @return \yii\db\ActiveQuery */ public function getCountries() { return $this->hasMany(Country::className(), ['user_id' => 'id']); }