1 taxonomy.install | taxonomy_update_1003() |
Create the taxonomy.settings config file.
Related topics
File
- core/
modules/ taxonomy/ taxonomy.install, line 308 - 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();
}