Fixed
Details
Details
Assignee
Gaston Dombiak
Gaston DombiakReporter
Gaston Dombiak
Gaston DombiakComponents
Fix versions
Affects versions
Priority
Created October 6, 2007 at 12:30 AM
Updated October 6, 2007 at 12:31 AM
Resolved October 6, 2007 at 12:31 AM
create database openfire character set utf8;
CREATE TABLE entConParticipant (
conversationID BIGINT NOT NULL,
joinedDate BIGINT NOT NULL,
leftDate BIGINT NULL,
bareJID VARCHAR(255) NOT NULL,
jidResource VARCHAR(255) NOT NULL,
nickname VARCHAR(255) NULL,
INDEX entConParticipant_conv_idx (conversationID, bareJID, jidResource, joinedDate),
INDEX entConParticipant_jid_idx (bareJID)
);