poll_uninstall

Definition

poll_uninstall()
poll/poll.install, line 72

Description

Implementation of hook_uninstall().

Code

<?php
function poll_uninstall() {
  db_query('DROP TABLE {poll}');
  db_query('DROP TABLE {poll_votes}');
  db_query('DROP TABLE {poll_choices}');
}
?>