drupal-8.without_automated_cron.php in Zircon Profile 8
Same filename and directory in other branches
File
core/modules/system/tests/fixtures/update/drupal-8.without_automated_cron.phpView source
<?php
$connection = Drupal\Core\Database\Database::getConnection();
$config = $connection;
$connection
->merge('config')
->condition('name', 'system.cron')
->condition('collection', '')
->fields([
'name' => 'system.cron',
'collection' => '',
'data' => serialize([
'threshold' => [
'autorun' => 0,
],
]),
])
->execute();