summaryrefslogtreecommitdiff
path: root/internal/storage/migrations/postgres/V0016.OAuth2ConsentSubjectNULL.down.sql
blob: 7e99449ec473bc33ad5a5d9eed711e282af6efc8 (plain)
1
2
3
4
5
6
DELETE FROM oauth2_consent_session
WHERE subject IS NULL;

ALTER TABLE oauth2_consent_session
    ALTER COLUMN subject SET NOT NULL,
    ALTER COLUMN subject DROP DEFAULT;