Spaces:
Sleeping
Sleeping
Create _schema.json
Browse files- _schema.json +30 -0
_schema.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"tables": {
|
| 3 |
+
"posts": {
|
| 4 |
+
"columns": {
|
| 5 |
+
"id": {
|
| 6 |
+
"type": "uuid",
|
| 7 |
+
"primaryKey": true,
|
| 8 |
+
"auto": true
|
| 9 |
+
},
|
| 10 |
+
"created_at": {
|
| 11 |
+
"type": "timestamp",
|
| 12 |
+
"auto": true
|
| 13 |
+
},
|
| 14 |
+
"updated_at": {
|
| 15 |
+
"type": "timestamp",
|
| 16 |
+
"auto": true
|
| 17 |
+
},
|
| 18 |
+
"title": {
|
| 19 |
+
"type": "string"
|
| 20 |
+
},
|
| 21 |
+
"body": {
|
| 22 |
+
"type": "string"
|
| 23 |
+
},
|
| 24 |
+
"author": {
|
| 25 |
+
"type": "string"
|
| 26 |
+
}
|
| 27 |
+
}
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
}
|