1 system.install system_update_1067()

Add default value for form_cache_expiration.

Related topics

File

core/modules/system/system.install, line 3172
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();
}