-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsqlx-data.json
108 lines (108 loc) · 2.34 KB
/
sqlx-data.json
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"db": "PostgreSQL",
"360fbbef2040c6423e478cd3fa8a0a94c27137f475e9350930017652c19ed2e2": {
"query": "SELECT id, created, updated, username, email, password_hash, password_salt, status AS \"status!: Status\" FROM account WHERE id = $1",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "id",
"type_info": "Uuid"
},
{
"ordinal": 1,
"name": "created",
"type_info": "Timestamptz"
},
{
"ordinal": 2,
"name": "updated",
"type_info": "Timestamptz"
},
{
"ordinal": 3,
"name": "username",
"type_info": "Text"
},
{
"ordinal": 4,
"name": "email",
"type_info": "Text"
},
{
"ordinal": 5,
"name": "password_hash",
"type_info": "Bytea"
},
{
"ordinal": 6,
"name": "password_salt",
"type_info": "Bytea"
},
{
"ordinal": 7,
"name": "status!: Status",
"type_info": {
"Custom": {
"name": "account_status",
"kind": {
"Enum": [
"unverified",
"active",
"disabled",
"deleted"
]
}
}
}
}
],
"parameters": {
"Left": [
"Uuid"
]
},
"nullable": [
false,
false,
false,
false,
false,
false,
false,
false
]
}
},
"f87ecf392f7f59ced9cc3272a4291de32dcb6a6e0c5232fc5b81c93a8d53ecf2": {
"query": "INSERT INTO account VALUES ($1, $2, $3, $4, $5, $6, $7, $8)",
"describe": {
"columns": [],
"parameters": {
"Left": [
"Uuid",
"Timestamptz",
"Timestamptz",
"Text",
"Text",
"Bytea",
"Bytea",
{
"Custom": {
"name": "account_status",
"kind": {
"Enum": [
"unverified",
"active",
"disabled",
"deleted"
]
}
}
}
]
},
"nullable": []
}
}
}