Skip to content

Commit

Permalink
Removed/reverted softDelete from UserGroup model
Browse files Browse the repository at this point in the history
  • Loading branch information
arvislacis authored Sep 10, 2023
1 parent 0fd524b commit 6308079
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/backend/models/UserGroup.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class UserGroup extends GroupBase
* @var array Relations
*/
public $belongsToMany = [
'users' => [User::class, 'table' => 'backend_users_groups', 'softDelete' => true],
'users' => [User::class, 'table' => 'backend_users_groups'],
'users_count' => [User::class, 'table' => 'backend_users_groups', 'count' => true]
];

Expand Down

0 comments on commit 6308079

Please sign in to comment.