summaryrefslogtreecommitdiff
path: root/internal/storage/migrations/postgres/V0005.ConsentSubjectNULL.down.sql
blob: 8def062aa93e0dfea66a5457b28a11d8c8d6fbf3 (plain)
1
2
3
4
5
6
7
8
9
ALTER TABLE oauth2_consent_session
    RENAME CONSTRAINT oauth2_consent_session_subject_fkey TO oauth2_consent_subject_fkey;

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;