All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.sql.tables.sql Maven / Gradle / Ivy

There is a newer version: 3.0.79
Show newest version
create table WMSLADefinition (
	mvccVersion LONG default 0 not null,
	uuid_ VARCHAR(75) null,
	wmSLADefinitionId LONG not null primary key,
	groupId LONG,
	companyId LONG,
	userId LONG,
	userName VARCHAR(75) null,
	createDate DATE null,
	modifiedDate DATE null,
	active_ BOOLEAN,
	calendarKey VARCHAR(75) null,
	description TEXT null,
	duration LONG,
	name VARCHAR(75) null,
	pauseNodeKeys VARCHAR(75) null,
	processId LONG,
	processVersion VARCHAR(75) null,
	startNodeKeys VARCHAR(75) null,
	stopNodeKeys VARCHAR(75) null,
	version VARCHAR(75) null,
	status INTEGER,
	statusByUserId LONG,
	statusByUserName VARCHAR(75) null,
	statusDate DATE null
);

create table WMSLADefinitionVersion (
	mvccVersion LONG default 0 not null,
	uuid_ VARCHAR(75) null,
	wmSLADefinitionVersionId LONG not null primary key,
	groupId LONG,
	companyId LONG,
	userId LONG,
	userName VARCHAR(75) null,
	createDate DATE null,
	modifiedDate DATE null,
	active_ BOOLEAN,
	calendarKey VARCHAR(75) null,
	description TEXT null,
	duration LONG,
	name VARCHAR(75) null,
	pauseNodeKeys VARCHAR(75) null,
	processId LONG,
	processVersion VARCHAR(75) null,
	startNodeKeys VARCHAR(75) null,
	stopNodeKeys VARCHAR(75) null,
	version VARCHAR(75) null,
	wmSLADefinitionId LONG,
	status INTEGER,
	statusByUserId LONG,
	statusByUserName VARCHAR(75) null,
	statusDate DATE null
);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy