-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsqlx-data.json
85 lines (85 loc) · 2.01 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
{
"db": "PostgreSQL",
"442f7eb6011592b6e20abe225a781315473b96984553966c58f78db3eeb47bf9": {
"describe": {
"columns": [],
"nullable": [],
"parameters": {
"Left": [
"Uuid",
"Text",
"Text",
"Timestamptz",
"Text"
]
}
},
"query": "\n INSERT INTO subscriptions (id, email, name, subscribed_at, status)\n VALUES ($1, $2, $3, $4, $5)\n "
},
"514d32ddec63453b6293c63980a9164d2079f1773647e1d2e96e3da18775c07b": {
"describe": {
"columns": [
{
"name": "email",
"ordinal": 0,
"type_info": "Text"
}
],
"nullable": [
false
],
"parameters": {
"Left": [
"Text"
]
}
},
"query": "\n SELECT email FROM subscriptions WHERE status = $1\n "
},
"ab21861fed2056a1c27d4596891c6d9f05ebe7ce266e1c90d4da0dad51453dd0": {
"describe": {
"columns": [],
"nullable": [],
"parameters": {
"Left": [
"Text",
"Uuid"
]
}
},
"query": "\n UPDATE subscriptions SET status = $1 WHERE id = $2\n "
},
"e6ad5ca75c1f3f44a615b868c59a48c1ebe358d27dc72cbb203bc6be9855b1fa": {
"describe": {
"columns": [
{
"name": "subscriber_id",
"ordinal": 0,
"type_info": "Uuid"
}
],
"nullable": [
false
],
"parameters": {
"Left": [
"Text"
]
}
},
"query": "\n SELECT subscriber_id FROM subscription_tokens WHERE subscription_token = $1\n "
},
"fa625c0844ec26b7f59ce885d6fe0b9a4f4676946706cb926c21da6ab1b89d90": {
"describe": {
"columns": [],
"nullable": [],
"parameters": {
"Left": [
"Text",
"Uuid"
]
}
},
"query": "\n INSERT INTO subscription_tokens (subscription_token, subscriber_id)\n VALUES ($1, $2)\n "
}
}