this repo has no description
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n SELECT code, pending_identifier, expires_at FROM channel_verifications\n WHERE user_id = $1 AND channel = $2::notification_channel\n ", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "code", 9 "type_info": "Text" 10 }, 11 { 12 "ordinal": 1, 13 "name": "pending_identifier", 14 "type_info": "Text" 15 }, 16 { 17 "ordinal": 2, 18 "name": "expires_at", 19 "type_info": "Timestamptz" 20 } 21 ], 22 "parameters": { 23 "Left": [ 24 "Uuid", 25 { 26 "Custom": { 27 "name": "notification_channel", 28 "kind": { 29 "Enum": [ 30 "email", 31 "discord", 32 "telegram", 33 "signal" 34 ] 35 } 36 } 37 } 38 ] 39 }, 40 "nullable": [ 41 false, 42 true, 43 false 44 ] 45 }, 46 "hash": "4bd5937b38e9ea67215a24f8f4ece05d107b4cdacdb59c30fa3782bb36942b26" 47}