strapi/examples/getstarted/api/country/models/Country.settings.json
2019-12-05 17:42:32 +01:00

30 lines
475 B
JSON
Executable File

{
"connection": "default",
"collectionName": "countries",
"info": {
"name": "country",
"description": ""
},
"options": {
"increments": true,
"timestamps": [
"created_at",
"updated_at"
],
"comment": ""
},
"attributes": {
"name": {
"type": "string",
"required": true,
"minLength": 3
},
"code": {
"type": "string",
"maxLength": 3,
"unique": true,
"minLength": 2
}
}
}