예제 #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPlayers()
 {
     return $this->hasMany(Player::className(), ['position_id' => 'id']);
 }
예제 #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPlayer()
 {
     return $this->hasOne(Player::className(), ['id' => 'player_id']);
 }