You are here

function views_send_update_6002 in Views Send 7

Same name and namespace in other branches
  1. 6 views_send.install \views_send_update_6002()

Remove views_send_format variables.

File

./views_send.install, line 127
The install and update code for the Views Send module.

Code

function views_send_update_6002() {
  $ret = array();
  $ret[] = update_sql("DELETE FROM {variable} WHERE name LIKE 'views_send_format_%'");
  return $ret;
}