this repo has no description
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n SELECT ab.id, ab.storage_key, u.deactivated_at\n FROM account_backups ab\n JOIN users u ON u.id = ab.user_id\n WHERE ab.id = $1 AND u.did = $2\n ", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "id", 9 "type_info": "Uuid" 10 }, 11 { 12 "ordinal": 1, 13 "name": "storage_key", 14 "type_info": "Text" 15 }, 16 { 17 "ordinal": 2, 18 "name": "deactivated_at", 19 "type_info": "Timestamptz" 20 } 21 ], 22 "parameters": { 23 "Left": [ 24 "Uuid", 25 "Text" 26 ] 27 }, 28 "nullable": [ 29 false, 30 false, 31 true 32 ] 33 }, 34 "hash": "72a5e8d9f678caf2e6c03e43d78203941645529a4d0ccf18f1abf477cde6ed8d" 35}