Ejemplo n.º 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getIdGame()
 {
     return $this->hasOne(Games::className(), ['id_game' => 'id_game']);
 }
Ejemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getGames()
 {
     return $this->hasMany(Games::className(), ['id_team_home' => 'id']);
 }