strapi/examples/getstarted/api/address/models/Address.settings.json
2019-08-28 17:20:53 +02:00

33 lines
516 B
JSON
Executable File

{
"connection": "default",
"collectionName": "addresses",
"info": {
"name": "address",
"description": ""
},
"options": {
"increments": true,
"timestamps": [
"created_at",
"updated_at"
],
"comment": ""
},
"attributes": {
"full_name": {
"type": "string"
},
"postal_code": {
"type": "string"
},
"city": {
"type": "string"
},
"geolocation": {
"type": "json"
},
"country": {
"model": "country"
}
}
}