24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-02 21:17:12 +02:00

Use MEDIUMTEXT type for vcard avatars in MySQL schema (EJAB-1252)

This commit is contained in:
Evgeniy Khramtsov 2010-11-17 17:36:51 +09:00
parent 0d2a8cd04f
commit 78931d8efa

View File

@ -72,7 +72,7 @@ CREATE INDEX i_despool USING BTREE ON spool(username);
CREATE TABLE vcard (
username varchar(250) PRIMARY KEY,
vcard text NOT NULL,
vcard mediumtext NOT NULL,
created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) CHARACTER SET utf8;