Use InnoDB and UTF-8 options when creating user_im_prefs table, to match others
This commit is contained in:
parent
c3ceaa893f
commit
64b5ea2e62
@ -647,7 +647,7 @@ create table user_im_prefs (
|
|||||||
|
|
||||||
constraint primary key (user_id, transport),
|
constraint primary key (user_id, transport),
|
||||||
constraint unique key `transport_screenname_key` ( `transport` , `screenname` )
|
constraint unique key `transport_screenname_key` ( `transport` , `screenname` )
|
||||||
);
|
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
|
||||||
|
|
||||||
create table conversation (
|
create table conversation (
|
||||||
id integer auto_increment primary key comment 'unique identifier',
|
id integer auto_increment primary key comment 'unique identifier',
|
||||||
|
Loading…
Reference in New Issue
Block a user