You are here

function ajaxblocks_update_6101 in Ajax Blocks 6

Rename table ajaxblock -> ajaxblocks.

File

./ajaxblocks.install, line 102
Install, update and uninstall functions for the ajaxblocks module.

Code

function ajaxblocks_update_6101() {
  $ret = array();
  db_rename_table($ret, 'ajaxblock', 'ajaxblocks');
  return $ret;
}