drupal/modules/poll/poll.install

19 lines
274 B
Plaintext

<?php
// $Id$
/**
* Implementation of hook_install().
*/
function poll_install() {
// Create tables.
drupal_install_schema('poll');
}
/**
* Implementation of hook_uninstall().
*/
function poll_uninstall() {
// Remove tables.
drupal_uninstall_schema('poll');
}