You are here

function video_filter_update_6201 in Video Filter 6.3

Same name and namespace in other branches
  1. 6.2 video_filter.install \video_filter_update_6201()

Update function that removes unused variables.

File

./video_filter.install, line 18
Install file for video_filter.

Code

function video_filter_update_6201(&$sandbox) {
  $ret = array();
  db_query("DELETE FROM {variable} WHERE name LIKE 'video_filter_priority_%'");
  return $ret;
}