From: Brion Vibber Date: Wed, 24 Mar 2010 21:18:06 +0000 (-0700) Subject: Use InnoDB and UTF-8 options when creating user_im_prefs table, to match others X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=64b5ea2e6238017fba5ad53274d26d53ed2b5fb3;p=quix0rs-gnu-social.git Use InnoDB and UTF-8 options when creating user_im_prefs table, to match others --- diff --git a/db/statusnet.sql b/db/statusnet.sql index d1cd670750..16d09a11f7 100644 --- a/db/statusnet.sql +++ b/db/statusnet.sql @@ -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',