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.change.tracking.service
Show all versions of com.liferay.change.tracking.service
Liferay Change Tracking Service
create table CTAutoResolutionInfo (
mvccVersion LONG default 0 not null,
ctAutoResolutionInfoId LONG not null primary key,
companyId LONG,
createDate DATE null,
ctCollectionId LONG,
modelClassNameId LONG,
sourceModelClassPK LONG,
targetModelClassPK LONG,
conflictIdentifier VARCHAR(500) null
);
create table CTCollection (
mvccVersion LONG default 0 not null,
uuid_ VARCHAR(75) null,
externalReferenceCode VARCHAR(75) null,
ctCollectionId LONG not null primary key,
companyId LONG,
userId LONG,
createDate DATE null,
modifiedDate DATE null,
ctRemoteId LONG,
schemaVersionId LONG,
name VARCHAR(75) null,
description VARCHAR(200) null,
onDemandUserId LONG,
shareable BOOLEAN,
status INTEGER,
statusByUserId LONG,
statusDate DATE null
);
create table CTCollectionTemplate (
mvccVersion LONG default 0 not null,
ctCollectionTemplateId LONG not null primary key,
companyId LONG,
userId LONG,
createDate DATE null,
modifiedDate DATE null,
name VARCHAR(75) null,
description VARCHAR(75) null
);
create table CTComment (
mvccVersion LONG default 0 not null,
ctCommentId LONG not null primary key,
companyId LONG,
userId LONG,
createDate DATE null,
modifiedDate DATE null,
ctCollectionId LONG,
ctEntryId LONG,
value TEXT null
);
create table CTEntry (
mvccVersion LONG default 0 not null,
uuid_ VARCHAR(75) null,
externalReferenceCode VARCHAR(75) null,
ctEntryId LONG not null primary key,
companyId LONG,
userId LONG,
createDate DATE null,
modifiedDate DATE null,
ctCollectionId LONG,
modelClassNameId LONG,
modelClassPK LONG,
modelMvccVersion LONG,
changeType INTEGER
);
create table CTMessage (
mvccVersion LONG default 0 not null,
ctMessageId LONG not null primary key,
companyId LONG,
ctCollectionId LONG,
messageContent TEXT null
);
create table CTPreferences (
mvccVersion LONG default 0 not null,
ctPreferencesId LONG not null primary key,
companyId LONG,
userId LONG,
ctCollectionId LONG,
previousCtCollectionId LONG,
confirmationEnabled BOOLEAN
);
create table CTProcess (
mvccVersion LONG default 0 not null,
ctProcessId LONG not null primary key,
companyId LONG,
userId LONG,
createDate DATE null,
ctCollectionId LONG,
backgroundTaskId LONG,
type_ INTEGER
);
create table CTRemote (
mvccVersion LONG default 0 not null,
ctRemoteId LONG not null primary key,
companyId LONG,
userId LONG,
createDate DATE null,
modifiedDate DATE null,
name VARCHAR(75) null,
description VARCHAR(75) null,
url VARCHAR(75) null,
clientId VARCHAR(75) null,
clientSecret VARCHAR(75) null
);
create table CTSchemaVersion (
mvccVersion LONG default 0 not null,
schemaVersionId LONG not null primary key,
companyId LONG,
schemaContext TEXT null
);
© 2015 - 2024 Weber Informatics LLC | Privacy Policy