Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / migrate_drupal / migrate_drupal.install
index 0ef88afd1c7d85219656b1c0576675ae49ce089f..820bcdc87062038bfc6cbdaae33019e76479a821 100644 (file)
@@ -14,3 +14,20 @@ function migrate_drupal_update_8501() {
     ->set('enforce_source_module_tags', ['Drupal 6', 'Drupal 7'])
     ->save();
 }
+
+/**
+ * Sets the follow-up migration tags.
+ */
+function migrate_drupal_update_8502() {
+  \Drupal::configFactory()
+    ->getEditable('migrate_drupal.settings')
+    ->set('follow_up_migration_tags', ['Follow-up migration'])
+    ->save();
+}
+
+/**
+ * Install migrate_drupal_multilingual since migrate_drupal is installed.
+ */
+function migrate_drupal_update_8601() {
+  \Drupal::service('module_installer')->install(['migrate_drupal_multilingual']);
+}