41 lines
872 B
JSON
41 lines
872 B
JSON
{
|
|
"name": "ItemBotanical",
|
|
"base": "Loggable",
|
|
"log": {
|
|
"model": "ItemLog",
|
|
"relation": "item",
|
|
"showField": "botanical"
|
|
},
|
|
"options": {
|
|
"mysql": {
|
|
"table": "itemBotanical"
|
|
}
|
|
},
|
|
"properties": {
|
|
"itemFk": {
|
|
"type": "Number",
|
|
"id": true,
|
|
"description": "Identifier"
|
|
},
|
|
"botanical": {
|
|
"type": "String"
|
|
}
|
|
},
|
|
"relations": {
|
|
"item": {
|
|
"type": "belongsTo",
|
|
"model": "Item",
|
|
"foreignKey": "itemFk"
|
|
},
|
|
"genus": {
|
|
"type": "belongsTo",
|
|
"model": "Genus",
|
|
"foreignKey": "genusFk"
|
|
},
|
|
"specie": {
|
|
"type": "belongsTo",
|
|
"model": "Specie",
|
|
"foreignKey": "specieFk"
|
|
}
|
|
}
|
|
} |