You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'mydb.auth_assignment' doesn't exist The SQL being executed was: SELECT b.* FROM auth_assignmenta, auth_itemb WHERE (a.item_name=b.name) AND (a.user_id='1') AND (b.type=1)
It gets triggered in
\vendor\webvimark\module-user-management\models\rbacDB\Role.php Line 23
return $dbManager->getRolesByUser($userId);
It seems like the custom table names are not getting handed over to the
yii\rbac\DbManager
The text was updated successfully, but these errors were encountered:
Module config in web.php:
` 'modules' => [
`
Upon login I get the following error message:
SQLSTATE[42S02]: Base table or view not found: 1146 Table 'mydb.auth_assignment' doesn't exist The SQL being executed was: SELECT
b.* FROM
auth_assignment,
auth_itemWHERE (
a.
item_name=
b.
name) AND (
a.
user_id='1') AND (
b.
type=1)
It gets triggered in
\vendor\webvimark\module-user-management\models\rbacDB\Role.php Line 23
return $dbManager->getRolesByUser($userId);
It seems like the custom table names are not getting handed over to the
yii\rbac\DbManager
The text was updated successfully, but these errors were encountered: