コード例 #1
0
ファイル: Logevents.php プロジェクト: phaniapsr/yiicomm
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getLogs()
 {
     return $this->hasMany(Logs::className(), ['LogEventId' => 'LogEventId']);
 }
コード例 #2
0
ファイル: User.php プロジェクト: phaniapsr/yiicomm
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getLogs()
 {
     return $this->hasMany(Logs::className(), ['UserId' => 'id']);
 }