function node_update_8016

Upgrade node schema to the standard entity SQL schema: create new tables.

Related topics

File

drupal/core/modules/node/node.install, line 1083
Install, update and uninstall functions for the node module.

Code

function node_update_8016() {
  foreach (_node_update_8016_schema() as $table => $table_schema) {
    db_create_table($table, $table_schema);
  }
}