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

34 lines
550 B
JSON
Raw Normal View History

2018-09-19 13:05:07 +00:00
{
"name": "ZoneIncluded",
"base": "VnModel",
"mixins": {
"Loggable": true
},
2018-09-19 13:05:07 +00:00
"options": {
"mysql": {
"table": "zoneIncluded"
}
},
"properties": {
2023-06-06 08:31:08 +00:00
"id": {
"id": true,
2022-05-12 07:47:47 +00:00
"type": "number"
2018-09-19 13:05:07 +00:00
},
"isIncluded": {
2022-05-12 07:47:47 +00:00
"type": "boolean"
2018-09-19 13:05:07 +00:00
}
},
"relations": {
"zone": {
"type": "belongsTo",
"model": "Zone",
"foreignKey": "zoneFk"
},
"geo": {
"type": "belongsTo",
"model": "ZoneGeo",
"foreignKey": "geoFk"
}
}
}