@wmfs/tymly-pg-plugin
Version:
Replace Tymly's out-the-box memory storage with PostgreSQL
20 lines • 402 B
JSON
{
"title": "meat",
"description": "A list of food items",
"primaryKey": ["foodName"],
"type": "object",
"properties": {
"foodName": {
"type": "string",
"description": "What is this food called?"
},
"foodGroup": {
"type": "string",
"description": "What sort of food is this?"
}
},
"indexes": [{
"columns": ["foodName"],
"unique": true
}]
}