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::notification_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": "notification_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": "9ebca49cb60b1891d3c1ef0087e189f2e35b982fce0c3313748c23c113a6e546"
30}