mirror of
https://gitee.com/dcloud/opendb.git
synced 2024-12-26 22:41:15 +08:00
feat: rename device_uuid to device_id
This commit is contained in:
parent
3197bf92e8
commit
426a5442d5
@ -1,48 +1,71 @@
|
|||||||
{
|
{
|
||||||
"schema": {
|
"schema": {
|
||||||
"bsonType": "object",
|
"bsonType": "object",
|
||||||
"required": [],
|
|
||||||
"properties": {
|
"properties": {
|
||||||
"_id": {
|
"_id": {
|
||||||
"description": "ID,系统自动生成"
|
"description": "ID,系统自动生成"
|
||||||
},
|
},
|
||||||
"user_id": {
|
|
||||||
"bsonType": "string",
|
|
||||||
"foreignKey": "uni-id-users._id",
|
|
||||||
"description": "用户id,参考uni-id-users表"
|
|
||||||
},
|
|
||||||
"ua": {
|
|
||||||
"bsonType": "string",
|
|
||||||
"description": "userAgent"
|
|
||||||
},
|
|
||||||
"device_uuid": {
|
|
||||||
"bsonType": "string",
|
|
||||||
"description": "设备唯一标识"
|
|
||||||
},
|
|
||||||
"type": {
|
|
||||||
"bsonType": "string",
|
|
||||||
"enum": [
|
|
||||||
"login",
|
|
||||||
"logout"
|
|
||||||
],
|
|
||||||
"description": "登录类型"
|
|
||||||
},
|
|
||||||
"state": {
|
|
||||||
"bsonType": "int",
|
|
||||||
"description": "结果:0 失败、1 成功"
|
|
||||||
},
|
|
||||||
"ip": {
|
|
||||||
"bsonType": "string",
|
|
||||||
"description": "ip地址"
|
|
||||||
},
|
|
||||||
"create_date": {
|
"create_date": {
|
||||||
"bsonType": "timestamp",
|
"bsonType": "timestamp",
|
||||||
"description": "创建时间",
|
"description": "创建时间",
|
||||||
"forceDefaultValue": {
|
"forceDefaultValue": {
|
||||||
"$env": "now"
|
"$env": "now"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"device_id": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"description": "设备唯一标识"
|
||||||
|
},
|
||||||
|
"ip": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"description": "ip地址"
|
||||||
|
},
|
||||||
|
"state": {
|
||||||
|
"bsonType": "int",
|
||||||
|
"description": "结果:0 失败、1 成功"
|
||||||
|
},
|
||||||
|
"type": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"description": "操作类型",
|
||||||
|
"enum": [
|
||||||
|
"logout",
|
||||||
|
"login",
|
||||||
|
"register",
|
||||||
|
"reset-pwd",
|
||||||
|
"bind-mobile",
|
||||||
|
"bind-weixin",
|
||||||
|
"bind-qq",
|
||||||
|
"bind-apple",
|
||||||
|
"bind-alipay"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"ua": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"description": "userAgent"
|
||||||
|
},
|
||||||
|
"user_id": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"foreignKey": "uni-id-users._id",
|
||||||
|
"description": "用户id,参考uni-id-users表"
|
||||||
|
},
|
||||||
|
"username": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"description": "用户名"
|
||||||
|
},
|
||||||
|
"email": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"description": "邮箱"
|
||||||
|
},
|
||||||
|
"mobile": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"description": "手机号"
|
||||||
|
},
|
||||||
|
"appid": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"description": "客户端DCloud AppId"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"required": []
|
||||||
},
|
},
|
||||||
"index": [
|
"index": [
|
||||||
{
|
{
|
||||||
@ -58,11 +81,59 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"IndexName": "device_uuid",
|
"IndexName": "device_id",
|
||||||
"MgoKeySchema": {
|
"MgoKeySchema": {
|
||||||
"MgoIndexKeys": [
|
"MgoIndexKeys": [
|
||||||
{
|
{
|
||||||
"Name": "device_uuid",
|
"Name": "device_id",
|
||||||
|
"Direction": "1"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"MgoIsUnique": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"IndexName": "ip",
|
||||||
|
"MgoKeySchema": {
|
||||||
|
"MgoIndexKeys": [
|
||||||
|
{
|
||||||
|
"Name": "ip",
|
||||||
|
"Direction": "1"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"MgoIsUnique": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"IndexName": "username",
|
||||||
|
"MgoKeySchema": {
|
||||||
|
"MgoIndexKeys": [
|
||||||
|
{
|
||||||
|
"Name": "username",
|
||||||
|
"Direction": "1"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"MgoIsUnique": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"IndexName": "mobile",
|
||||||
|
"MgoKeySchema": {
|
||||||
|
"MgoIndexKeys": [
|
||||||
|
{
|
||||||
|
"Name": "mobile",
|
||||||
|
"Direction": "1"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"MgoIsUnique": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"IndexName": "email",
|
||||||
|
"MgoKeySchema": {
|
||||||
|
"MgoIndexKeys": [
|
||||||
|
{
|
||||||
|
"Name": "email",
|
||||||
"Direction": "1"
|
"Direction": "1"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user