37 lines
754 B
JSON
37 lines
754 B
JSON
{
|
|
"name": "ItemBotanical",
|
|
"base": "VnModel",
|
|
"mixins": {
|
|
"Loggable": true
|
|
},
|
|
"options": {
|
|
"mysql": {
|
|
"table": "itemBotanical"
|
|
}
|
|
},
|
|
"properties": {
|
|
"itemFk": {
|
|
"type": "number",
|
|
"id": true,
|
|
"description": "Identifier"
|
|
}
|
|
},
|
|
"relations": {
|
|
"item": {
|
|
"type": "belongsTo",
|
|
"model": "Item",
|
|
"foreignKey": "itemFk"
|
|
},
|
|
"genus": {
|
|
"type": "belongsTo",
|
|
"model": "Genus",
|
|
"foreignKey": "genusFk"
|
|
},
|
|
"specie": {
|
|
"type": "belongsTo",
|
|
"model": "Specie",
|
|
"foreignKey": "specieFk"
|
|
}
|
|
}
|
|
}
|