strapi/examples/getstarted/api/article/models/Article.settings.json
2019-06-21 17:06:49 +02:00

21 lines
321 B
JSON

{
"connection": "default",
"collectionName": "articles",
"info": {
"name": "article",
"description": ""
},
"options": {
"increments": true,
"timestamps": true,
"comment": ""
},
"attributes": {
"title": {
"type": "string"
},
"content": {
"type": "text"
}
}
}