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.background.task.service
Show all versions of com.liferay.portal.background.task.service
Liferay Portal Background Task Service
create table BackgroundTask (
mvccVersion LONG default 0 not null,
backgroundTaskId LONG not null primary key,
groupId LONG,
companyId LONG,
userId LONG,
userName VARCHAR(75) null,
createDate DATE null,
modifiedDate DATE null,
name VARCHAR(255) null,
servletContextNames VARCHAR(255) null,
taskExecutorClassName VARCHAR(200) null,
taskContextMap TEXT null,
completed BOOLEAN,
completionDate DATE null,
status INTEGER,
statusMessage TEXT null
);
© 2015 - 2025 Weber Informatics LLC | Privacy Policy