9 lines
331 B
Plaintext
9 lines
331 B
Plaintext
db.user_role.createIndex({"uid": 1}, {unique: true});
|
|
db.user_role.createIndex({"role_id": 1});
|
|
db.user_role.createIndex({"brand": 1});
|
|
db.user_role.createIndex({"status": 1});
|
|
db.user_role.createIndex({"brand": 1, "role_id": 1});
|
|
db.user_role.createIndex({"brand": 1, "status": 1});
|
|
db.user_role.createIndex({"create_time": 1});
|
|
|