Commit 918baeab authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gaston

Changed size of "jid" field in mucAffiliation and mucMember tables. JM-263


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@1269 b35dd754-fafc-0310-a699-88a17e54d16e
parent dec892c0
......@@ -144,14 +144,14 @@ CREATE INDEX mucRoom_roomID_idx on mucRoom(roomID);
CREATE TABLE mucAffiliation (
roomID INT NOT NULL,
jid NVARCHAR(1024) NOT NULL,
jid NVARCHAR(424) NOT NULL,
affiliation INT NOT NULL,
CONSTRAINT mucAffiliation__pk PRIMARY KEY (roomID,jid)
);
CREATE TABLE mucMember (
roomID INT NOT NULL,
jid NVARCHAR(1024) NOT NULL,
jid NVARCHAR(424) NOT NULL,
nickname NVARCHAR(255) NULL,
firstName NVARCHAR(100) NULL,
lastName NVARCHAR(100) NULL,
......
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