Example #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPlans()
 {
     return $this->hasMany(Plan::className(), ['purse_id' => 'id']);
 }
Example #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getIdPlan()
 {
     return $this->hasOne(Plan::className(), ['id' => 'id_plan']);
 }
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPlan()
 {
     return $this->hasOne(Plan::className(), ['id' => 'plan_id']);
 }