strapi/examples/getstarted/api/articles/models/Articles.settings.json

34 lines
534 B
JSON
Raw Normal View History

2019-04-09 15:29:17 +02:00
{
"connection": "default",
"collectionName": "articles",
2019-04-09 15:29:17 +02:00
"info": {
"name": "articles",
"description": ""
},
"options": {
"increments": true,
2019-05-17 11:11:10 +02:00
"timestamps": [
"created_at",
"updated_at"
],
"comment": ""
2019-04-09 15:29:17 +02:00
},
"attributes": {
2019-04-19 17:24:56 +02:00
"content2": {
"type": "text"
},
"posts": {
"collection": "post",
"via": "articles"
2019-05-17 11:11:10 +02:00
},
"title": {
"type": "string"
},
"image": {
"model": "file",
"via": "related",
"plugin": "upload"
2019-04-09 21:51:28 +02:00
}
2019-04-09 15:29:17 +02:00
}
}