this repo has no description
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n SELECT id, did, email, password_hash, two_factor_enabled,\n preferred_notification_channel as \"preferred_notification_channel: NotificationChannel\",\n deactivated_at, takedown_ref\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": "two_factor_enabled", 29 "type_info": "Bool" 30 }, 31 { 32 "ordinal": 5, 33 "name": "preferred_notification_channel: NotificationChannel", 34 "type_info": { 35 "Custom": { 36 "name": "notification_channel", 37 "kind": { 38 "Enum": [ 39 "email", 40 "discord", 41 "telegram", 42 "signal" 43 ] 44 } 45 } 46 } 47 }, 48 { 49 "ordinal": 6, 50 "name": "deactivated_at", 51 "type_info": "Timestamptz" 52 }, 53 { 54 "ordinal": 7, 55 "name": "takedown_ref", 56 "type_info": "Text" 57 } 58 ], 59 "parameters": { 60 "Left": [ 61 "Text" 62 ] 63 }, 64 "nullable": [ 65 false, 66 false, 67 true, 68 false, 69 false, 70 false, 71 true, 72 true 73 ] 74 }, 75 "hash": "458c98edc9c01286dc2677fcff82c1f84c5db138fdef9a8e8756771c30b66810" 76}