summaryrefslogtreecommitdiff
path: root/internal/storage/migrations/postgres/V0017.OAuth2Claims.up.sql
blob: d51605893106df105b43ada7edc6534fbc8e7392 (plain)
1
2
3
4
5
6
7
ALTER TABLE oauth2_consent_session
    ADD COLUMN granted_claims TEXT NULL;

ALTER TABLE oauth2_consent_preconfiguration
    ADD COLUMN requested_claims TEXT NULL,
    ADD COLUMN signature_claims CHAR(64) NULL,
    ADD COLUMN granted_claims TEXT DEFAULT '';