Version 1
[yaffs-website] / web / core / modules / system / tests / fixtures / update / drupal-8.update-test-postupdate-enabled.php
diff --git a/web/core/modules/system/tests/fixtures/update/drupal-8.update-test-postupdate-enabled.php b/web/core/modules/system/tests/fixtures/update/drupal-8.update-test-postupdate-enabled.php
new file mode 100644 (file)
index 0000000..a6243a1
--- /dev/null
@@ -0,0 +1,39 @@
+<?php
+
+/**
+ * @file
+ * Partial database to mimic the installation of the update_test_post_update
+ * module.
+ */
+
+use Drupal\Core\Database\Database;
+
+$connection = Database::getConnection();
+
+// Set the schema version.
+$connection->merge('key_value')
+  ->condition('collection', 'system.schema')
+  ->condition('name', 'update_test_postupdate')
+  ->fields([
+    'collection' => 'system.schema',
+    'name' => 'update_test_postupdate',
+    'value' => 'i:8000;',
+  ])
+  ->execute();
+
+// Update core.extension.
+$extensions = $connection->select('config')
+  ->fields('config', ['data'])
+  ->condition('collection', '')
+  ->condition('name', 'core.extension')
+  ->execute()
+  ->fetchField();
+$extensions = unserialize($extensions);
+$extensions['module']['update_test_postupdate'] = 8000;
+$connection->update('config')
+  ->fields([
+    'data' => serialize($extensions),
+  ])
+  ->condition('collection', '')
+  ->condition('name', 'core.extension')
+  ->execute();