META-INF.sql.tables.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.portal.security.sso.openid.connect.persistence.service
Show all versions of com.liferay.portal.security.sso.openid.connect.persistence.service
Liferay Portal Security SSO OpenID Connect Persistence Service
The newest version!
create table OpenIdConnectSession (
mvccVersion LONG default 0 not null,
openIdConnectSessionId LONG not null primary key,
companyId LONG,
userId LONG,
modifiedDate DATE null,
accessToken TEXT null,
accessTokenExpirationDate DATE null,
authServerWellKnownURI VARCHAR(256) null,
clientId VARCHAR(256) null,
idToken TEXT null,
refreshToken VARCHAR(2000) null
);
© 2015 - 2025 Weber Informatics LLC | Privacy Policy