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

6 lines
145 B
PL/PgSQL

PRAGMA foreign_keys=OFF;
BEGIN;
ALTER TABLE oidc_clients ADD COLUMN skip_consent BOOLEAN NOT NULL DEFAULT FALSE;
COMMIT;
PRAGMA foreign_keys=ON;