initial commit
[squeep-indie-auther] / src / db / postgres / sql / token-refresh-revoke-by-code-id.sql
1 -- Revoke the refresh-token for a token
2 UPDATE token SET
3 refresh_expires = NULL,
4 refresh_duration = NULL
5 WHERE code_id = $(codeId)