poll_uninstall()poll/poll.install, line 72
Implementation of hook_uninstall().
<?php function poll_uninstall() { db_query('DROP TABLE {poll}'); db_query('DROP TABLE {poll_votes}'); db_query('DROP TABLE {poll_choices}'); } ?>