All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
META-INF.sql.tables.sql Maven / Gradle / Ivy
create table WikiNode (
mvccVersion LONG default 0 not null,
uuid_ VARCHAR(75) null,
nodeId LONG not null primary key,
groupId LONG,
companyId LONG,
userId LONG,
userName VARCHAR(75) null,
createDate DATE null,
modifiedDate DATE null,
name VARCHAR(75) null,
description STRING null,
lastPostDate DATE null,
lastPublishDate DATE null,
status INTEGER,
statusByUserId LONG,
statusByUserName VARCHAR(75) null,
statusDate DATE null
);
create table WikiPage (
mvccVersion LONG default 0 not null,
uuid_ VARCHAR(75) null,
pageId LONG not null primary key,
resourcePrimKey LONG,
groupId LONG,
companyId LONG,
userId LONG,
userName VARCHAR(75) null,
createDate DATE null,
modifiedDate DATE null,
nodeId LONG,
title VARCHAR(255) null,
version DOUBLE,
minorEdit BOOLEAN,
content TEXT null,
summary STRING null,
format VARCHAR(75) null,
head BOOLEAN,
parentTitle VARCHAR(255) null,
redirectTitle VARCHAR(255) null,
lastPublishDate DATE null,
status INTEGER,
statusByUserId LONG,
statusByUserName VARCHAR(75) null,
statusDate DATE null
);
create table WikiPageResource (
mvccVersion LONG default 0 not null,
uuid_ VARCHAR(75) null,
resourcePrimKey LONG not null primary key,
groupId LONG,
companyId LONG,
nodeId LONG,
title VARCHAR(255) null
);