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

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