Our Personal Data Server from scratch!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at fix/code-quality-in-general 64 lines 1.4 kB view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n SELECT id, user_id, name, password_hash, created_at, privileged, scopes, created_by_controller_did\n FROM app_passwords\n WHERE user_id = $1\n ORDER BY created_at DESC\n ", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "id", 9 "type_info": "Uuid" 10 }, 11 { 12 "ordinal": 1, 13 "name": "user_id", 14 "type_info": "Uuid" 15 }, 16 { 17 "ordinal": 2, 18 "name": "name", 19 "type_info": "Text" 20 }, 21 { 22 "ordinal": 3, 23 "name": "password_hash", 24 "type_info": "Text" 25 }, 26 { 27 "ordinal": 4, 28 "name": "created_at", 29 "type_info": "Timestamptz" 30 }, 31 { 32 "ordinal": 5, 33 "name": "privileged", 34 "type_info": "Bool" 35 }, 36 { 37 "ordinal": 6, 38 "name": "scopes", 39 "type_info": "Text" 40 }, 41 { 42 "ordinal": 7, 43 "name": "created_by_controller_did", 44 "type_info": "Text" 45 } 46 ], 47 "parameters": { 48 "Left": [ 49 "Uuid" 50 ] 51 }, 52 "nullable": [ 53 false, 54 false, 55 false, 56 false, 57 false, 58 false, 59 true, 60 true 61 ] 62 }, 63 "hash": "afb8506f8c685f7faa3cb10477a3e8b0da0f1740881edd1ccf9b1bcd24fb408e" 64}