summaryrefslogtreecommitdiff
path: root/internal/storage/migrations/postgres/V0016.OAuth2ConsentSubjectNULL.up.sql
blob: c45544d3956c0c6b9df0b31aa59716b50301a19a (plain)
1
2
3
ALTER TABLE oauth2_consent_session
    ALTER COLUMN subject DROP NOT NULL,
    ALTER COLUMN subject SET DEFAULT NULL;