-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsqlx-data.json
More file actions
85 lines (85 loc) · 1.94 KB
/
sqlx-data.json
File metadata and controls
85 lines (85 loc) · 1.94 KB
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",
"7c7511c79ae854403c9978cd10e78e671b0b073c3fae259c8d2e38f7b6cd5de9": {
"describe": {
"columns": [
{
"name": "subscription_id",
"ordinal": 0,
"type_info": "Uuid"
}
],
"nullable": [
false
],
"parameters": {
"Left": [
"Text"
]
}
},
"query": "SELECT subscription_id FROM subscription_tokens WHERE id = $1"
},
"94acd04562fd53142d161d18321c040d78478e5e4143a5ff74ac3ec8dd35eeb8": {
"describe": {
"columns": [],
"nullable": [],
"parameters": {
"Left": [
"Uuid",
"Text",
"Text",
"Timestamptz",
{
"Custom": {
"kind": {
"Enum": [
"PENDING_CONFIRMATION",
"CONFIRMED"
]
},
"name": "subscription_status"
}
}
]
}
},
"query": "\n INSERT INTO subscriptions\n VALUES ($1, $2, $3, $4, $5)\n "
},
"b277939661dbeabbf5621d0bd9dbac4d4c4ac07b8326c278c68422934a7bc55d": {
"describe": {
"columns": [],
"nullable": [],
"parameters": {
"Left": [
"Text",
"Uuid"
]
}
},
"query": "\n INSERT INTO subscription_tokens\n VALUES ($1, $2)\n "
},
"b2a611c60f4eaf89a19ca8f690c7a1acac8e74290764fb63b4a33aca2178f93a": {
"describe": {
"columns": [],
"nullable": [],
"parameters": {
"Left": [
{
"Custom": {
"kind": {
"Enum": [
"PENDING_CONFIRMATION",
"CONFIRMED"
]
},
"name": "subscription_status"
}
},
"Uuid"
]
}
},
"query": "UPDATE subscriptions SET status = $1 WHERE id = $2"
}
}