错误:
App warning
The current user has no roles. Please try another account.
提示没有角色。我需要在数据库中的哪个表添加角色和关联?
非常感谢
错误:
App warning
The current user has no roles. Please try another account.
提示没有角色。我需要在数据库中的哪个表添加角色和关联?
非常感谢
在数据库中的 roles_users 表里添加用户与角色的对应关系
了解了~非常感谢
好像初始化有问题,roles表里是空的,能分享下初始的配置吗
admin@nocobase.com 账号都没角色
角色都没有了吗?试试执行下面SQL:
INSERT INTO roles_users (role_name, user_id, “default”) VALUES (‘root’, 1, true);
需要根据环境变量里面的 DB_UNDERSCORED 来确认表名是 驼峰还是下划线