Files
pocket-id/backend/resources/migrations/sqlite/20250323184520_oidc_refresh_tokens.down.sql

7 lines
158 B
MySQL
Raw Normal View History

PRAGMA foreign_keys=OFF;
BEGIN;
DROP INDEX IF EXISTS idx_oidc_refresh_tokens_token;
DROP TABLE IF EXISTS oidc_refresh_tokens;
COMMIT;
PRAGMA foreign_keys=ON;