diff --git a/core/modules/entity_reference/entity_reference.info.yml b/core/modules/entity_reference/entity_reference.info.yml
index 2b5ca83..176b5f9 100644
--- a/core/modules/entity_reference/entity_reference.info.yml
+++ b/core/modules/entity_reference/entity_reference.info.yml
@@ -4,4 +4,4 @@ description: 'Provides a field that can reference other entities.'
 package: Field types
 version: VERSION
 core: 8.x
-hidden: true
\ No newline at end of file
+hidden: true
diff --git a/core/modules/system/system.install b/core/modules/system/system.install
index a9be20a..72c9e3c 100644
--- a/core/modules/system/system.install
+++ b/core/modules/system/system.install
@@ -1810,7 +1810,7 @@ function system_update_8011() {
 /**
  * Uninstalls 'entity_reference' module. Fixes entity reference fields storage.
  */
-function system_update_8008() {
+function system_update_8012() {
   $config = \Drupal::configFactory();
   /** @var \Drupal\Core\Field\FieldTypePluginManager $field_type_manager */
   $field_type_manager = \Drupal::service('plugin.manager.field.field_type');
@@ -1826,9 +1826,6 @@ function system_update_8008() {
       continue;
     }
 
-    // Remove 'target_bundle' from settings.
-    $field_storage->clear('settings.target_bundle');
-
     // Fix the type provider.
     $field_storage->set('module', 'core');
 
