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

6 lines
115 B
PL/PgSQL

PRAGMA foreign_keys=OFF;
BEGIN;
ALTER TABLE oidc_clients DROP COLUMN pkce_enabled;
COMMIT;
PRAGMA foreign_keys=ON;