33 lines
688 B
JSON
33 lines
688 B
JSON
{
|
|
"name": "TicketCollection",
|
|
"base": "VnModel",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "ticketCollection"
|
|
}
|
|
},
|
|
"properties": {
|
|
"id": {
|
|
"id": true,
|
|
"type": "number"
|
|
},
|
|
"usedShelves": {
|
|
"type": "number"
|
|
},
|
|
"collectionFk": {
|
|
"type": "number"
|
|
}
|
|
},
|
|
"relations": {
|
|
"ticket": {
|
|
"type": "belongsTo",
|
|
"model": "Ticket",
|
|
"foreignKey": "ticketFk"
|
|
},
|
|
"collection": {
|
|
"type": "belongsTo",
|
|
"model": "Collection",
|
|
"foreignKey": "collectionFk"
|
|
}
|
|
}
|
|
} |