fix(openid): allow expires_in param to be null

This commit is contained in:
Hivert Quentin
2025-05-21 14:50:41 +02:00
parent 085fc4a9eb
commit 9954c3607b
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -170,7 +170,7 @@ CREATE TABLE sogo_opend_id (
c_old_session varchar(4096) DEFAULT '',
c_session_started int(11) NOT NULL,
c_refresh_token varchar(4096) DEFAULT '',
c_access_token_expires_in int(11) NOT NULL,
c_access_token_expires_in int(11) DEFAULT '',
c_refresh_token_expires_in int(11) DEFAULT NULL,
PRIMARY KEY (c_user_session)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;