Spaces:
Sleeping
Sleeping
File size: 523 Bytes
349fa7f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | {
"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"
}
}
}
}
} |