You are here

function notifications_custom_update_6000 in Notifications 6.4

Change explanation by description

File

notifications_custom/notifications_custom.install, line 133
Install, update and uninstall functions for the notifications_custom module.

Code

function notifications_custom_update_6000() {
  $ret = array();
  db_change_field($ret, 'notifications_custom', 'explanation', 'description', array(
    'type' => 'text',
    'not null' => FALSE,
  ));
  return $ret;
}