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.oauth.client.persistence.service
Show all versions of com.liferay.oauth.client.persistence.service
Liferay OAuth Client Persistence Service
create table OAuthClientASLocalMetadata (
mvccVersion LONG default 0 not null,
oAuthClientASLocalMetadataId LONG not null primary key,
companyId LONG,
userId LONG,
userName VARCHAR(75) null,
createDate DATE null,
modifiedDate DATE null,
localWellKnownURI VARCHAR(256) null,
metadataJSON TEXT null
);
create table OAuthClientEntry (
mvccVersion LONG default 0 not null,
oAuthClientEntryId LONG not null primary key,
companyId LONG,
userId LONG,
userName VARCHAR(75) null,
createDate DATE null,
modifiedDate DATE null,
authRequestParametersJSON VARCHAR(3999) null,
authServerWellKnownURI VARCHAR(256) null,
clientId VARCHAR(256) null,
infoJSON TEXT null,
oidcUserInfoMapperJSON VARCHAR(3999) null,
tokenRequestParametersJSON VARCHAR(3999) null
);
© 2015 - 2025 Weber Informatics LLC | Privacy Policy