strapi/examples/getstarted/api/menu/models/Menu.settings.json
2019-12-05 18:41:04 +01:00

27 lines
435 B
JSON
Executable File

{
"connection": "default",
"collectionName": "menus",
"info": {
"name": "menu",
"description": ""
},
"options": {
"increments": true,
"timestamps": true,
"comment": ""
},
"attributes": {
"description": {
"type": "text"
},
"menusections": {
"collection": "menusection",
"via": "menu"
},
"restaurant": {
"via": "menu",
"model": "restaurant"
}
}
}