1 system.install | system_update_1029() |
Convert config sync size to config.
Related topics
File
- core/
modules/ system/ system.install, line 2633 - Install, update and uninstall functions for the system module.
Code
function system_update_1029() {
$config = config('system.core');
$config->set('config_sync_batch_size', update_variable_get('config_sync_batch_size', 20));
$config->set('default_nodes_main', update_variable_get('default_nodes_main', 10));
$config->save();
}