1 node.install | node_update_1006() |
Delete the node_type table after conversions to configuration files.
Related topics
File
- core/
modules/ node/ node.install, line 498 - Install, update and uninstall functions for the node module.
Code
function node_update_1006() {
// This update is separate from node_update_1004() in the event that a module
// needs to use the node_type table before it is deleted.
if (db_table_exists('node_type')) {
db_drop_table('node_type');
}
}