统一角色体系为admin/agent/user,修复代理查询角色错误,添加语言切换和明暗切换
This commit is contained in:
+1
-1
@@ -14,7 +14,7 @@ CREATE TABLE IF NOT EXISTS users (
|
||||
signature VARCHAR(255) DEFAULT NULL COMMENT '个性签名',
|
||||
points INT DEFAULT 0 COMMENT '积分',
|
||||
level INT DEFAULT 1 COMMENT '等级',
|
||||
role ENUM('user', 'developer', 'agent', 'admin') DEFAULT 'user' COMMENT '角色',
|
||||
role ENUM('user', 'agent', 'admin') DEFAULT 'user' COMMENT '角色',
|
||||
status ENUM('active', 'inactive', 'banned') DEFAULT 'active' COMMENT '状态',
|
||||
agent_id BIGINT UNSIGNED DEFAULT NULL COMMENT '所属代理ID',
|
||||
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||||
|
||||
Reference in New Issue
Block a user