33 lines
525 B
JSON
33 lines
525 B
JSON
{
|
|
"name": "ItemBarcode",
|
|
"base": "Loggable",
|
|
"log": {
|
|
"model": "ItemLog",
|
|
"relation": "item",
|
|
"showField": "code"
|
|
},
|
|
"options": {
|
|
"mysql": {
|
|
"table": "itemBarcode"
|
|
}
|
|
},
|
|
"properties": {
|
|
"id": {
|
|
"type": "Number",
|
|
"id": true,
|
|
"description": "Identifier"
|
|
},
|
|
"code": {
|
|
"type": "String",
|
|
"required": true
|
|
}
|
|
},
|
|
"relations": {
|
|
"item": {
|
|
"type": "belongsTo",
|
|
"model": "Item",
|
|
"foreignKey": "itemFk"
|
|
}
|
|
}
|
|
}
|