You are here

function block_tracker_uninstall in Util 7

Same name and namespace in other branches
  1. 6.3 contribs/block_tracker/block_tracker.install \block_tracker_uninstall()

Implements hook_uninstall(); Remove module variables.

File

contribs/block_tracker/block_tracker.install, line 25
Install code for Block Tracker add-on to Util.

Code

function block_tracker_uninstall() {
  db_drop_field('block', 'lastused');
}