Files
pocket-id/backend/resources/migrations/sqlite/20250323184520_oidc_refresh_tokens.down.sql
2025-08-24 23:07:50 +02:00

7 lines
158 B
PL/PgSQL

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;