Community Documentation

node_update_7001

7 node.install node_update_7001()

Rename {node_revisions} table to {node_revision}.

File

modules/node/node.install, line 545
Install, update and uninstall functions for the node module.

Code

<?php
function node_update_7001() {
  db_rename_table('node_revisions', 'node_revision');
}
?>
Login or register to post comments