52 lines
1021 B
JSON
52 lines
1021 B
JSON
{
|
|
"fields": {
|
|
"number": {
|
|
"type": "autoincrement",
|
|
"index": true
|
|
},
|
|
"data": {
|
|
"type": "jsonObject"
|
|
},
|
|
"noteData": {
|
|
"type": "jsonObject",
|
|
"notStorable": true
|
|
},
|
|
"type": {
|
|
"type": "varchar"
|
|
},
|
|
"read": {
|
|
"type": "bool"
|
|
},
|
|
"user": {
|
|
"type": "link"
|
|
},
|
|
"createdAt": {
|
|
"type": "datetime",
|
|
"readOnly": true
|
|
},
|
|
"message": {
|
|
"type": "text"
|
|
}
|
|
},
|
|
"links": {
|
|
"user": {
|
|
"type": "belongsTo",
|
|
"entity": "User"
|
|
}
|
|
},
|
|
"collection": {
|
|
"sortBy": "number",
|
|
"asc": false
|
|
},
|
|
"indexes": {
|
|
"createdAt": {
|
|
"type": "index",
|
|
"columns": ["createdAt"]
|
|
},
|
|
"user": {
|
|
"type": "index",
|
|
"columns": ["userId", "createdAt"]
|
|
}
|
|
}
|
|
}
|