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
1 changed files with 1 additions and 1 deletions

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;