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 ] 39 } 40 } 41 }, 42 "Text", 43 "Text", 44 "Text", 45 "Jsonb" 46 ] 47 }, 48 "nullable": [ 49 false 50 ] 51 }, 52 "hash": "303777d97e6ed344f8c699eae37b7b0c241c734a5b7726019c2a59ae277caee6" 53}