Index: includes/database/mysql/schema.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/database/mysql/schema.inc,v
retrieving revision 1.11
diff -u -9 -p -r1.11 schema.inc
--- includes/database/mysql/schema.inc	26 Jan 2009 14:08:41 -0000	1.11
+++ includes/database/mysql/schema.inc	5 Mar 2009 20:55:56 -0000
@@ -44,19 +44,19 @@ class DatabaseSchema_mysql extends Datab
    * @param $name
    *   The name of the table to create.
    * @param $table
    *   A Schema API table definition array.
    * @return
    *   An array of SQL statements to create the table.
    */
   protected function createTableSql($name, $table) {
     if (empty($table['mysql_suffix'])) {
-      $table['mysql_suffix'] = "/*!40100 DEFAULT CHARACTER SET UTF8 */";
+      $table['mysql_suffix'] = "/*!40100 DEFAULT CHARACTER SET UTF8 COLLATE utf8_bin */";
     }
 
     $sql = "CREATE TABLE {" . $name . "} (\n";
 
     // Add the SQL statement for each field.
     foreach ($table['fields'] as $field_name => $field) {
       $sql .= $this->createFieldSql($field_name, $this->processField($field)) . ", \n";
     }
 
