Neon-AI commited on
Commit
349fa7f
·
verified ·
1 Parent(s): 94f0e45

Create _schema.json

Browse files
Files changed (1) hide show
  1. _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
+ }