Our Personal Data Server from scratch!
0

Configure Feed

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

tranquil-pds / .sqlx / query-7061e8763ef7d91ff152ed0124f99e1820172fd06916d225ca6c5137a507b8fa.json
2.8 kB 122 lines
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n SELECT id, did, email, password_hash, password_required, two_factor_enabled,\n preferred_comms_channel as \"preferred_comms_channel!: CommsChannel\",\n deactivated_at, takedown_ref,\n email_verified, discord_verified, telegram_verified, signal_verified,\n account_type as \"account_type!: AccountType\"\n FROM users\n WHERE handle = $1 OR email = $1\n ", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "id", 9 "type_info": "Uuid" 10 }, 11 { 12 "ordinal": 1, 13 "name": "did", 14 "type_info": "Text" 15 }, 16 { 17 "ordinal": 2, 18 "name": "email", 19 "type_info": "Text" 20 }, 21 { 22 "ordinal": 3, 23 "name": "password_hash", 24 "type_info": "Text" 25 }, 26 { 27 "ordinal": 4, 28 "name": "password_required", 29 "type_info": "Bool" 30 }, 31 { 32 "ordinal": 5, 33 "name": "two_factor_enabled", 34 "type_info": "Bool" 35 }, 36 { 37 "ordinal": 6, 38 "name": "preferred_comms_channel!: CommsChannel", 39 "type_info": { 40 "Custom": { 41 "name": "comms_channel", 42 "kind": { 43 "Enum": [ 44 "email", 45 "discord", 46 "telegram", 47 "signal" 48 ] 49 } 50 } 51 } 52 }, 53 { 54 "ordinal": 7, 55 "name": "deactivated_at", 56 "type_info": "Timestamptz" 57 }, 58 { 59 "ordinal": 8, 60 "name": "takedown_ref", 61 "type_info": "Text" 62 }, 63 { 64 "ordinal": 9, 65 "name": "email_verified", 66 "type_info": "Bool" 67 }, 68 { 69 "ordinal": 10, 70 "name": "discord_verified", 71 "type_info": "Bool" 72 }, 73 { 74 "ordinal": 11, 75 "name": "telegram_verified", 76 "type_info": "Bool" 77 }, 78 { 79 "ordinal": 12, 80 "name": "signal_verified", 81 "type_info": "Bool" 82 }, 83 { 84 "ordinal": 13, 85 "name": "account_type!: AccountType", 86 "type_info": { 87 "Custom": { 88 "name": "account_type", 89 "kind": { 90 "Enum": [ 91 "personal", 92 "delegated" 93 ] 94 } 95 } 96 } 97 } 98 ], 99 "parameters": { 100 "Left": [ 101 "Text" 102 ] 103 }, 104 "nullable": [ 105 false, 106 false, 107 true, 108 true, 109 false, 110 false, 111 false, 112 true, 113 true, 114 false, 115 false, 116 false, 117 false, 118 false 119 ] 120 }, 121 "hash": "7061e8763ef7d91ff152ed0124f99e1820172fd06916d225ca6c5137a507b8fa" 122}