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

21 lines
322 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,
"timestamps": [
"created_at",
"updated_at"
],
"comment": ""
2019-04-09 15:29:17 +02:00
},
"attributes": {
"content": {
"type": "integer"
2019-04-09 21:51:28 +02:00
}
2019-04-09 15:29:17 +02:00
}
}