1.20.x taxonomy.install taxonomy_update_1003()

Create the taxonomy.settings config file.

Related topics

File

modules/taxonomy/taxonomy.install, line 305
Install, update and uninstall functions for the taxonomy module.

Code

function taxonomy_update_1003() {
  $config = config('taxonomy.settings');
  $config->set('maintain_index_table', TRUE);
  $config->save();
}