-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsqlx-data.json
63 lines (63 loc) · 1.51 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
{
"db": "PostgreSQL",
"11c9d1fb7af81092c45d6858bf4d339d60d487fc5c2f9b63db83d649b128892d": {
"describe": {
"columns": [],
"nullable": [],
"parameters": {
"Left": [
"Text",
"Uuid"
]
}
},
"query": "INSERT INTO subscriptions_tokens (subscription_token, subscriber_id)\n VALUES ($1, $2)"
},
"a71a1932b894572106460ca2e34a63dc0cb8c1ba7a70547add1cddbb68133c2b": {
"describe": {
"columns": [],
"nullable": [],
"parameters": {
"Left": [
"Uuid"
]
}
},
"query": "UPDATE subscriptions SET status = 'confirmed' WHERE id = $1"
},
"adcab0b11f9069a61e6a26ffa06f359a699c34083d8318027510053ae50404fd": {
"describe": {
"columns": [],
"nullable": [],
"parameters": {
"Left": [
"Uuid",
"Text",
"Text",
"Timestamptz"
]
}
},
"query": "\n INSERT INTO subscriptions (id, email, name, subscribed_at, status)\n VALUES ($1, $2, $3, $4, 'pending_confirmation')"
},
"b19bb964969904c7e1718adaca7a79f77fa64fa576df28a57bd77d32a062ea71": {
"describe": {
"columns": [
{
"name": "subscriber_id",
"ordinal": 0,
"type_info": "Uuid"
}
],
"nullable": [
false
],
"parameters": {
"Left": [
"Text"
]
}
},
"query": "SELECT subscriber_id FROM subscriptions_tokens WHERE subscription_token = $1"
}
}