1.20.x system.install system_update_1067()

Add default value for form_cache_expiration.

Related topics

File

modules/system/system.install, line 3097
Install, update and uninstall functions for the system module.

Code

function system_update_1067() {
  $config = config('system.core');
  $config->set('form_cache_expiration', 21600);
  $config->save();
}