this repo has no description
1{
2 "db_name": "PostgreSQL",
3 "query": "SELECT k.key_bytes, k.encryption_version, u.deactivated_at, u.takedown_ref, u.is_admin\n FROM users u\n JOIN user_keys k ON u.id = k.user_id\n WHERE u.did = $1",
4 "describe": {
5 "columns": [
6 {
7 "ordinal": 0,
8 "name": "key_bytes",
9 "type_info": "Bytea"
10 },
11 {
12 "ordinal": 1,
13 "name": "encryption_version",
14 "type_info": "Int4"
15 },
16 {
17 "ordinal": 2,
18 "name": "deactivated_at",
19 "type_info": "Timestamptz"
20 },
21 {
22 "ordinal": 3,
23 "name": "takedown_ref",
24 "type_info": "Text"
25 },
26 {
27 "ordinal": 4,
28 "name": "is_admin",
29 "type_info": "Bool"
30 }
31 ],
32 "parameters": {
33 "Left": [
34 "Text"
35 ]
36 },
37 "nullable": [
38 false,
39 true,
40 true,
41 true,
42 false
43 ]
44 },
45 "hash": "cc68023c320bc4376925c2cd921cd48045a47ca5841eef8c8889894f2c2452f6"
46}