Use InnoDB and UTF-8 options when creating user_im_prefs table, to match others

This commit is contained in:
Brion Vibber 2010-03-24 14:18:06 -07:00
parent c3ceaa893f
commit 64b5ea2e62
1 changed files with 1 additions and 1 deletions

View File

@ -647,7 +647,7 @@ create table user_im_prefs (
constraint primary key (user_id, transport),
constraint unique key `transport_screenname_key` ( `transport` , `screenname` )
);
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
create table conversation (
id integer auto_increment primary key comment 'unique identifier',