Db / _schema.json
Neon-AI's picture
Create _schema.json
349fa7f verified
raw
history blame
523 Bytes
{
"tables": {
"posts": {
"columns": {
"id": {
"type": "uuid",
"primaryKey": true,
"auto": true
},
"created_at": {
"type": "timestamp",
"auto": true
},
"updated_at": {
"type": "timestamp",
"auto": true
},
"title": {
"type": "string"
},
"body": {
"type": "string"
},
"author": {
"type": "string"
}
}
}
}
}