1 system.install | system_update_1010() |
Remove the registry and registry_file tables.
Related topics
File
- core/
modules/ system/ system.install, line 1905 - Install, update and uninstall functions for the system module.
Code
function system_update_1010() {
if (db_table_exists('registry')) {
db_drop_table('registry');
}
if (db_table_exists('registry_file')) {
db_drop_table('registry_file');
}
}