backend/generate/database/mongo/2025101200000001_roles.up.txt

40 lines
868 B
Plaintext
Raw Normal View History

2025-11-14 14:40:56 +00:00
// 插入初始角色數據
2025-10-22 13:40:31 +00:00
db.role.insertMany([
{
"client_id": 1,
"uid": "ADMIN",
"name": "管理員",
"status": 1,
"create_time": NumberLong(1728745200),
"update_time": NumberLong(1728745200)
},
{
"client_id": 1,
"uid": "OPERATOR",
"name": "操作員",
"status": 1,
"create_time": NumberLong(1728745200),
"update_time": NumberLong(1728745200)
},
{
"client_id": 1,
"uid": "USER",
"name": "一般使用者",
"status": 1,
"create_time": NumberLong(1728745200),
"update_time": NumberLong(1728745200)
2025-11-12 08:17:23 +00:00
},
{
"client_id": 1,
"uid": "PLAYER",
"name": "陪玩專員",
"status": 1,
"create_time": NumberLong(1728745200),
"update_time": NumberLong(1728745200)
2025-11-14 14:40:56 +00:00
}
]);
// 注意:索引應該在 2025100900000002_role.up.txt 中建立
// 這裡只插入初始數據