opendb/collection/uni-id-user-change-log/collection.json

53 lines
1.1 KiB
JSON
Raw Normal View History

2022-05-07 15:40:48 +08:00
{
"schema": {
"bsonType": "object",
"required": [],
"properties": {
"_id": {
"description": "ID系统自动生成"
},
"user_id": {
"bsonType": "string",
"description": "用户id参考uni-id-users表"
},
"changeKey": {
"bsonType": "string",
"description": "变化的内容phone/email"
},
"oldVal": {
"bsonType": "string",
"description": "变化之前的旧值"
},
"newVal": {
"bsonType": "string",
"description": "变化之后的新值"
},
"ip": {
"bsonType": "string",
"description": "ip地址"
},
"create_date": {
"bsonType": "timestamp",
"description": "修改时间",
"forceDefaultValue": {
"$env": "now"
}
}
}
},
"index": [
{
"IndexName": "user_id",
"MgoKeySchema": {
"MgoIndexKeys": [
{
"Name": "user_id",
"Direction": "1"
}
],
"MgoIsUnique": false
}
}
]
}