/**
  * @return \yii\db\ActiveQuery
  */
 public function getMsg0()
 {
     return $this->hasOne(Msg::className(), ['id' => 'msg']);
 }
Exemple #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getMsgs()
 {
     return $this->hasMany(Msg::className(), ['userid' => 'id']);
 }