blob: c98b9ea340b6cc092711de0240aec36c5018265c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?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');
}
|