forked from gothinkster/realworld-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsqlx-data.json
45 lines (45 loc) · 954 Bytes
/
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
{
"db": "PostgreSQL",
"c9fc8a0de14497097e3d5342d8a155fdca5ffcbf4732b34c7d48f869b4e1e60d": {
"query": "\n SELECT email FROM user_info\n WHERE email = $1\n ",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "email",
"type_info": "Text"
}
],
"parameters": {
"Left": [
"Text"
]
},
"nullable": [
false
]
}
},
"e04a21c2a50b39ae78ea4cc42f3a26bfbc0b04b1f6e90d24226ba58c6098dfc2": {
"query": "\n INSERT INTO user_info(username,email,hashed_password)\n VALUES ($1,$2,$3)\n RETURNING id\n ",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "id",
"type_info": "Int8"
}
],
"parameters": {
"Left": [
"Text",
"Text",
"Text"
]
},
"nullable": [
false
]
}
}
}