this repo has no description
at main 690 B view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "\n SELECT u.did, icu.used_at\n FROM invite_code_uses icu\n JOIN users u ON icu.used_by_user = u.id\n WHERE icu.code = $1\n ORDER BY icu.used_at DESC\n ", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "did", 9 "type_info": "Text" 10 }, 11 { 12 "ordinal": 1, 13 "name": "used_at", 14 "type_info": "Timestamptz" 15 } 16 ], 17 "parameters": { 18 "Left": [ 19 "Text" 20 ] 21 }, 22 "nullable": [ 23 false, 24 false 25 ] 26 }, 27 "hash": "5d5442136932d4088873a935c41cb3a683c4771e4fb8c151b3fd5119fb6c1068" 28}