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
|
{
"db_name": "SQLite",
"query": "\n select\n sub.endpoint,\n sub.p256dh,\n sub.auth\n from push_subscription as sub\n join token on sub.token = token.id\n where token.login <> $1\n ",
"describe": {
"columns": [
{
"name": "endpoint",
"ordinal": 0,
"type_info": "Text"
},
{
"name": "p256dh",
"ordinal": 1,
"type_info": "Text"
},
{
"name": "auth",
"ordinal": 2,
"type_info": "Text"
}
],
"parameters": {
"Right": 1
},
"nullable": [
false,
false,
false
]
},
"hash": "99fc5ed0803a637ad140d6603462bc3ca82d28709a3117ce4844687098b19746"
}
|