-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsqlx-data.json
63 lines (63 loc) · 1.62 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",
"4e9dd354d67a617ea26df8ae1b9fcd7b3e6583b3bab6a6961a05b8ec52ce64b7": {
"describe": {
"columns": [
{
"name": "subscriber_id",
"ordinal": 0,
"type_info": "Uuid"
}
],
"nullable": [
false
],
"parameters": {
"Left": [
"Text"
]
}
},
"query": "\n SELECT subscriber_id\n FROM subscription_tokens\n WHERE subscription_token = $1\n "
},
"949c0af077a90bb42d0d9ab8f599cfbe4b37665cdb54759136e427dfb0ba6858": {
"describe": {
"columns": [],
"nullable": [],
"parameters": {
"Left": [
"Uuid"
]
}
},
"query": "\n UPDATE subscription\n SET status = 'confirmed' \n WHERE id = $1;\n "
},
"96286276fa32245eb1a46a59d69cb29f1642774d4154cfce5645bcd33c8fcf75": {
"describe": {
"columns": [],
"nullable": [],
"parameters": {
"Left": [
"Text",
"Uuid"
]
}
},
"query": "\n INSERT INTO subscription_tokens (subscription_token, subscriber_id)\n VALUES ($1, $2);\n "
},
"e27dbc42a35b42fcb9961761c843b52811b23f63993d41f8db4132015b8e6ed1": {
"describe": {
"columns": [],
"nullable": [],
"parameters": {
"Left": [
"Uuid",
"Text",
"Text",
"Timestamptz"
]
}
},
"query": "\n INSERT INTO subscription (id, email, name, subscribed_at, status)\n VALUES ($1, $2, $3, $4, 'pending_confirmation')\n "
}
}