Working with relational removals by yii2

Comparing #1 with #2

Revision #2 was created by AndroideLP AndroideLP on May 11, 2017, 8:59:48 PM.

Dados novos

Content

[...]
{
$game->delete();
}

}
     // deletando de vinculo
 
     public function actionDeleteTestAll()
 
     {
 
       $game = Games::findOne(1);
 
       foreach($game->tests as $test)
 
       {
 
          $test->delete();
 
       }
 
     }
 


public function actionDeleteTheRelation($id)
{
[...]