1CREATE TABLE {$NAMESPACE}_user.user_preferences ( 2 id int unsigned not null auto_increment primary key, 3 userPHID varchar(64) binary not null, 4 preferences longblob not null, 5 unique key (userPHID) 6); 7 8