mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
5 lines
325 B
MySQL
5 lines
325 B
MySQL
|
ALTER TABLE oauth2_consent_session MODIFY subject CHAR(36) NULL DEFAULT NULL;
|
||
|
ALTER TABLE oauth2_consent_session
|
||
|
DROP FOREIGN KEY oauth2_consent_subject_fkey,
|
||
|
ADD CONSTRAINT oauth2_consent_session_subject_fkey FOREIGN KEY (subject) REFERENCES user_opaque_identifier(identifier) ON UPDATE RESTRICT ON DELETE RESTRICT;
|