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

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

create table Chat_Entry (
	entryId LONG not null primary key,
	createDate LONG,
	fromUserId LONG,
	toUserId LONG,
	content VARCHAR(1000) null,
	flag INTEGER
);

create table Chat_Status (
	statusId LONG not null primary key,
	userId LONG,
	modifiedDate LONG,
	online_ BOOLEAN,
	awake BOOLEAN,
	activePanelIds STRING null,
	message STRING null,
	playSound BOOLEAN
);




© 2015 - 2025 Weber Informatics LLC | Privacy Policy