salix/modules/zone/back/models/zone-included.json

34 lines
550 B
JSON

{
"name": "ZoneIncluded",
"base": "VnModel",
"mixins": {
"Loggable": true
},
"options": {
"mysql": {
"table": "zoneIncluded"
}
},
"properties": {
"id": {
"id": true,
"type": "number"
},
"isIncluded": {
"type": "boolean"
}
},
"relations": {
"zone": {
"type": "belongsTo",
"model": "Zone",
"foreignKey": "zoneFk"
},
"geo": {
"type": "belongsTo",
"model": "ZoneGeo",
"foreignKey": "geoFk"
}
}
}