function views_send_update_6002 in Views Send 6
Same name and namespace in other branches
- 7 views_send.install \views_send_update_6002()
Remove views_send_format variables.
File
- ./
views_send.install, line 141 - 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;
}