strapi/examples/getstarted/api/country/models/Country.settings.json
2019-11-20 16:46:35 +01:00

27 lines
457 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
}
}
}