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