diff -u b/core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php b/core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php --- b/core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php +++ b/core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php @@ -1571,6 +1571,7 @@ 'type' => 'varchar', 'length' => 128, 'not null' => TRUE, + 'is_ascii' => TRUE, 'description' => 'The entity id this data is attached to', ); } only in patch2: unchanged: --- a/core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageSchemaTest.php +++ b/core/tests/Drupal/Tests/Core/Entity/Sql/SqlContentEntityStorageSchemaTest.php @@ -804,6 +804,7 @@ public function testDedicatedTableSchema() { 'bundle' => array( 'type' => 'varchar', 'length' => 128, + 'is_ascii' => true, 'not null' => true, 'default' => '', 'description' => 'The field instance bundle to which this row belongs, used when deleting a field instance', @@ -830,6 +831,7 @@ public function testDedicatedTableSchema() { 'langcode' => array( 'type' => 'varchar', 'length' => 32, + 'is_ascii' => true, 'not null' => true, 'default' => '', 'description' => 'The language code for this data item.', @@ -949,6 +951,7 @@ public function testDedicatedTableSchemaForEntityWithStringIdentifier() { 'bundle' => array( 'type' => 'varchar', 'length' => 128, + 'is_ascii' => true, 'not null' => true, 'default' => '', 'description' => 'The field instance bundle to which this row belongs, used when deleting a field instance', @@ -964,17 +967,20 @@ public function testDedicatedTableSchemaForEntityWithStringIdentifier() { 'type' => 'varchar', 'length' => 128, 'not null' => true, + 'is_ascii' => true, 'description' => 'The entity id this data is attached to', ), 'revision_id' => array( 'type' => 'varchar', 'length' => 128, 'not null' => true, + 'is_ascii' => true, 'description' => 'The entity revision id this data is attached to, which for an unversioned entity type is the same as the entity id', ), 'langcode' => array( 'type' => 'varchar', 'length' => 32, + 'is_ascii' => true, 'not null' => true, 'default' => '', 'description' => 'The language code for this data item.',