Commit 21f74a16 authored by Dele Olajide's avatar Dele Olajide Committed by dele

Fix OF-654 - Limit index size of JID to 256 for mysql

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@13847 b35dd754-fafc-0310-a699-88a17e54d16e
parent dd5f8282
......@@ -64,7 +64,7 @@ CREATE TABLE ofRoster (
nick VARCHAR(255),
PRIMARY KEY (rosterID),
INDEX ofRoster_unameid_idx (username),
INDEX ofRoster_jid_idx (jid)
INDEX ofRoster_jid_idx (jid(255))
);
CREATE TABLE ofRosterGroups (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment