this repo has no description
1{
2 "db_name": "PostgreSQL",
3 "query": "\n INSERT INTO notification_queue\n (user_id, channel, notification_type, recipient, subject, body, metadata)\n VALUES ($1, $2, $3, $4, $5, $6, $7)\n RETURNING id\n ",
4 "describe": {
5 "columns": [
6 {
7 "ordinal": 0,
8 "name": "id",
9 "type_info": "Uuid"
10 }
11 ],
12 "parameters": {
13 "Left": [
14 "Uuid",
15 {
16 "Custom": {
17 "name": "notification_channel",
18 "kind": {
19 "Enum": [
20 "email",
21 "discord",
22 "telegram",
23 "signal"
24 ]
25 }
26 }
27 },
28 {
29 "Custom": {
30 "name": "notification_type",
31 "kind": {
32 "Enum": [
33 "welcome",
34 "email_verification",
35 "password_reset",
36 "email_update",
37 "account_deletion",
38 "admin_email",
39 "plc_operation",
40 "two_factor_code",
41 "channel_verification"
42 ]
43 }
44 }
45 },
46 "Text",
47 "Text",
48 "Text",
49 "Jsonb"
50 ]
51 },
52 "nullable": [
53 false
54 ]
55 },
56 "hash": "303777d97e6ed344f8c699eae37b7b0c241c734a5b7726019c2a59ae277caee6"
57}