Drupal 在数据库中的什么位置存储用户权限?
有谁知道 Drupal 在数据库中存储用户角色的位置吗?它不在用户表中,我似乎找不到它。我可以找到它定义角色的位置,定义角色的权限,但我找不到它定义某个用户的角色的位置。有人知道吗?谢谢!
Does anyone know where Drupal stores, in the Database, the role of a user? It's not in the users table, and I can't seem to find it. I can find where it defines the role, defines the role's permissions, but I can't find where it defines what Role a certain User is. Anyone know? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 Drupal 6,它位于
users_roles
表中,该表将users
用户记录(通过uid
)与role
相关联角色记录(通过rid
)。For Drupal 6 it's in the
users_roles
table, which associates ausers
user record (viauid
) with arole
role record (viarid
).它存储权限的直接表是
role_permission
。The direct table it stores permissions in is
role_permission
.