diff --git a/core/modules/migrate_drupal/config/install/migrate.migration.d6_update_settings.yml b/core/modules/migrate_drupal/config/install/migrate.migration.d6_update_settings.yml
index 879e855..f79d4dc 100644
--- a/core/modules/migrate_drupal/config/install/migrate.migration.d6_update_settings.yml
+++ b/core/modules/migrate_drupal/config/install/migrate.migration.d6_update_settings.yml
@@ -9,11 +9,13 @@ source:
     - update_fetch_url
     - update_notification_threshold
     - update_notify_emails
+    - update_check_frequency
 process:
   'fetch/max_attempts': update_max_fetch_attempts
   'fetch/url': update_fetch_url
   'notification/threshold': update_notification_threshold
   'notification/emails': update_notify_emails
+  'check/interval_days': update_check_frequency
 destination:
   plugin: config
   config_name: update.settings
diff --git a/core/modules/migrate_drupal/src/Tests/Dump/Drupal6UpdateSettings.php b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6UpdateSettings.php
index 638b618..025571c 100644
--- a/core/modules/migrate_drupal/src/Tests/Dump/Drupal6UpdateSettings.php
+++ b/core/modules/migrate_drupal/src/Tests/Dump/Drupal6UpdateSettings.php
@@ -37,6 +37,11 @@ public function load() {
       'name' => 'update_notify_emails',
       'value' => 'a:0:{}',
     ))
+    ->values(array(
+      'name' => 'update_check_frequency',
+      'value' => 's:1:"7";',
+    ))    
+
     ->execute();
   }
 }
diff --git a/core/modules/migrate_drupal/src/Tests/d6/MigrateUpdateConfigsTest.php b/core/modules/migrate_drupal/src/Tests/d6/MigrateUpdateConfigsTest.php
index 578d2e8..92c6c49 100644
--- a/core/modules/migrate_drupal/src/Tests/d6/MigrateUpdateConfigsTest.php
+++ b/core/modules/migrate_drupal/src/Tests/d6/MigrateUpdateConfigsTest.php
@@ -50,6 +50,7 @@ public function testUpdateSettings() {
     $this->assertIdentical($config->get('fetch.url'), 'http://updates.drupal.org/release-history');
     $this->assertIdentical($config->get('notification.threshold'), 'all');
     $this->assertIdentical($config->get('notification.emails'), array());
+    $this->assertIdentical($config->get('check.interval_days'), 7);
     $this->assertConfigSchema(\Drupal::service('config.typed'), 'update.settings', $config->get());
   }
 
