Example #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getGames()
 {
     return $this->hasMany(Games::className(), ['group_id' => 'id']);
 }
Example #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getGame()
 {
     return $this->hasOne(Games::className(), ['id' => 'game_id']);
 }