You are here

function poll_uninstall in Drupal 5

Same name and namespace in other branches
  1. 6 modules/poll/poll.install \poll_uninstall()

Implementation of hook_uninstall().

File

modules/poll/poll.install, line 72

Code

function poll_uninstall() {
  db_query('DROP TABLE {poll}');
  db_query('DROP TABLE {poll_votes}');
  db_query('DROP TABLE {poll_choices}');
}