You are here

function migrate_drupal_update_8502 in Drupal 8

Sets the follow-up migration tags.

File

core/modules/migrate_drupal/migrate_drupal.install, line 21
Contains install and update functions for Migrate Drupal

Code

function migrate_drupal_update_8502() {
  \Drupal::configFactory()
    ->getEditable('migrate_drupal.settings')
    ->set('follow_up_migration_tags', [
    'Follow-up migration',
  ])
    ->save();
}