blob: 1c07a190d9a6bff73abf8c955bd0bbac39246b79 (
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 upload_install() {
// Create tables.
drupal_install_schema('upload');
}
/**
* Implementation of hook_uninstall().
*/
function upload_uninstall() {
// Remove tables.
drupal_uninstall_schema('upload');
}
|