|
<?php
|
|
// $Id$
|
|
|
|
/**
|
|
* Implementation of hook_install().
|
|
*/
|
|
function openid_install() {
|
|
// Create table.
|
|
drupal_install_schema('openid');
|
|
}
|
|
|
|
/**
|
|
* Implementation of hook_uninstall().
|
|
*/
|
|
function openid_uninstall() {
|
|
// Remove table.
|
|
drupal_uninstall_schema('openid');
|
|
}
|