Files
pocket-id/backend/resources/migrations/sqlite/20260626120000_oidc_client_skip_consent.down.sql
T

6 lines
115 B
PL/PgSQL

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