Added revoked token table

This commit is contained in:
2025-03-12 22:26:19 +01:00
parent 3558e7d3d0
commit a9a964a388

View File

@@ -0,0 +1,5 @@
-- Add migration script here
CREATE TABLE IF NOT EXISTS revoked (
'token_id' INTEGER NOT NULL,
'user_id' VARCHAR NOT NULL
)