Revision #2 has been created by AndroideLP on May 11, 2017, 8:59:48 PM with the memo:
Dados novos
« previous (#1) next (#3) »
Changes
Title
unchanged
Working with relational removals by yii2
Category
unchanged
Tutorials
Yii version
unchanged
Tags
unchanged
model, relations, remove, delete
Content
changed
[...]
{
$game->delete();
}
}
// deletando de vinculo
public function actionDeleteTestAll()
{
$game = Games::findOne(1);
foreach($game->tests as $test)
{
$test->delete();
}
}
public function actionDeleteTheRelation($id)
{[...]