Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / migrate_drupal / migrate_drupal.install
diff --git a/web/core/modules/migrate_drupal/migrate_drupal.install b/web/core/modules/migrate_drupal/migrate_drupal.install
new file mode 100644 (file)
index 0000000..0ef88af
--- /dev/null
@@ -0,0 +1,16 @@
+<?php
+
+/**
+ * @file
+ * Contains install and update functions for Migrate Drupal
+ */
+
+/**
+ * Creates migrate_drupal.settings config object.
+ */
+function migrate_drupal_update_8501() {
+  \Drupal::configFactory()
+    ->getEditable('migrate_drupal.settings')
+    ->set('enforce_source_module_tags', ['Drupal 6', 'Drupal 7'])
+    ->save();
+}