-
Notifications
You must be signed in to change notification settings - Fork 0
/
sqlx-data.json
69 lines (69 loc) · 1.33 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
{
"db": "PostgreSQL",
"95a4102b03c5735fb0cec4ef2157e109cc456ecdb2a1966782b00ac93182fb70": {
"describe": {
"columns": [
{
"name": "id",
"ordinal": 0,
"type_info": "Uuid"
},
{
"name": "content",
"ordinal": 1,
"type_info": "Text"
},
{
"name": "created_at",
"ordinal": 2,
"type_info": "Timestamp"
},
{
"name": "user_id",
"ordinal": 3,
"type_info": "Int4"
},
{
"name": "ip",
"ordinal": 4,
"type_info": "Cidr"
}
],
"nullable": [
false,
false,
false,
true,
true
],
"parameters": {
"Left": [
"Uuid"
]
}
},
"query": "SELECT * FROM pastes WHERE id = $1"
},
"dbb773d8e7beba07385a3d203c65e001a9f3f55648593b364d0d6a44541d1021": {
"describe": {
"columns": [
{
"name": "id",
"ordinal": 0,
"type_info": "Uuid"
}
],
"nullable": [
false
],
"parameters": {
"Left": [
"Uuid",
"Text",
"Cidr"
]
}
},
"query": " INSERT INTO pastes (id, content, ip) VALUES ( $1, $2, $3 ) RETURNING id"
}
}