Db / db /_schema.json
Neon-AI's picture
Rename _schema.json to db/_schema.json
002ddb9 verified
raw
history blame contribute delete
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"
}
}
}
}
}