authelia/internal/storage/migrations/mysql/V0017.OAuth2Claims.up.sql

8 lines
242 B
SQL

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