opendb/collection/opendb-news-favorite/collection.json

53 lines
1.1 KiB
JSON
Raw Normal View History

2020-09-08 14:37:48 +08:00
{
"schema": {
"bsonType": "object",
"required": ["user_id", "article_id"],
"permission": {
2020-10-28 20:21:38 +08:00
"read": true,
"create": "auth.uid != null",
"update": false,
"delete": "doc.uid == auth.uid"
},
2020-09-08 14:37:48 +08:00
"properties": {
"_id": {
"description": "ID系统自动生成"
},
"article_id": {
"bsonType": "string",
2020-11-10 16:11:13 +08:00
"description": "文章id参考opendb-news-articles表",
"foreignKey":"opendb-news-articles._id"
2020-09-08 14:37:48 +08:00
},
"user_id": {
"bsonType": "string",
"description": "收藏者id参考uni-id-users表",
"forceDefaultValue": {
"$env": "uid"
2020-11-10 16:11:13 +08:00
},
"foreignKey":"uni-id-users._id"
},
"create_date": {
"bsonType": "timestamp",
"description": "收藏时间"
2020-09-08 14:37:48 +08:00
}
}
},
"index": [
{
"IndexName": "article_user_",
"MgoKeySchema": {
"MgoIndexKeys": [
{
"Name": "article_id",
"Direction": "1"
},
{
"Name": "user_id",
"Direction": "1"
}
],
"MgoIsUnique": true
}
}
]
2020-09-08 14:37:48 +08:00
}