| 1 |
{ |
| 2 |
"db_name": "PostgreSQL", |
| 3 |
"query": "\n UPDATE password_reset_tokens\n SET used_at = NOW()\n WHERE token_hash = $1\n AND used_at IS NULL\n AND expires_at > NOW()\n RETURNING user_id AS \"user_id: UserId\"\n ", |
| 4 |
"describe": { |
| 5 |
"columns": [ |
| 6 |
{ |
| 7 |
"ordinal": 0, |
| 8 |
"name": "user_id: UserId", |
| 9 |
"type_info": "Uuid" |
| 10 |
} |
| 11 |
], |
| 12 |
"parameters": { |
| 13 |
"Left": [ |
| 14 |
"Text" |
| 15 |
] |
| 16 |
}, |
| 17 |
"nullable": [ |
| 18 |
false |
| 19 |
] |
| 20 |
}, |
| 21 |
"hash": "8c06e61d0e8ac6f58228b27389844364a2cddf39036a82d96b3c5bc344dd385c" |
| 22 |
} |
| 23 |
|