this repo has no description
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n INSERT INTO channel_verifications (user_id, channel, code, pending_identifier, expires_at)\n VALUES ($1, $2::comms_channel, $3, $4, $5)\n ON CONFLICT (user_id, channel) DO UPDATE\n SET code = $3, pending_identifier = $4, expires_at = $5, created_at = NOW()\n ", 4 "describe": { 5 "columns": [], 6 "parameters": { 7 "Left": [ 8 "Uuid", 9 { 10 "Custom": { 11 "name": "comms_channel", 12 "kind": { 13 "Enum": [ 14 "email", 15 "discord", 16 "telegram", 17 "signal" 18 ] 19 } 20 } 21 }, 22 "Text", 23 "Text", 24 "Timestamptz" 25 ] 26 }, 27 "nullable": [] 28 }, 29 "hash": "c4db3853b2f3b6363ab0e2c10a1820dd37741e9c506d85fc2608a3a6e376c5e6" 30}