strapi/examples/getstarted/api/menu/models/Menu.settings.json
2021-06-24 09:09:30 +02:00

32 lines
635 B
JSON
Executable File

{
"kind": "collectionType",
"collectionName": "menus",
"info": {
"name": "menu",
"description": ""
},
"options": {
"draftAndPublish": false,
"increments": true,
"timestamps": true,
"comment": ""
},
"attributes": {
"description": {
"type": "text"
},
"menusections": {
"type": "relation",
"relation": "oneToMany",
"target": "application::menusection.menusection",
"mappedBy": "menu"
},
"restaurant": {
"type": "relation",
"relation": "oneToOne",
"target": "application::restaurant.restaurant",
"mappedBy": "menu"
}
}
}