diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-09-10 06:38:20 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-09-10 06:38:20 +0000 |
commit | 029c48c68d7f4f2bc94e93e3333908ca158433c5 (patch) | |
tree | bf1fef18db8910f94ee977861829b966d42efb00 /modules/simpletest/simpletest.install | |
parent | 82b51dff1d2fd90b439129c70b415d30a06d1bce (diff) | |
download | brdo-029c48c68d7f4f2bc94e93e3333908ca158433c5.tar.gz brdo-029c48c68d7f4f2bc94e93e3333908ca158433c5.tar.bz2 |
- Patch #306151 by agentrickard, David_Rothstein, Dave Reid, dbabbage, moshe weitzman: automatically install/uninstall schema.
Diffstat (limited to 'modules/simpletest/simpletest.install')
-rw-r--r-- | modules/simpletest/simpletest.install | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/simpletest/simpletest.install b/modules/simpletest/simpletest.install index 1ca0bae18..d12d5befd 100644 --- a/modules/simpletest/simpletest.install +++ b/modules/simpletest/simpletest.install @@ -10,7 +10,6 @@ * Implement hook_install(). */ function simpletest_install() { - drupal_install_schema('simpletest'); // Check for files directory. $path = 'public://simpletest'; if (file_prepare_directory($path, FILE_CREATE_DIRECTORY)) { @@ -110,9 +109,6 @@ function simpletest_uninstall() { variable_del('simpletest_clear_results'); variable_del('simpletest_verbose'); - // Uninstall schema. - drupal_uninstall_schema('simpletest'); - // Remove generated files. $path = file_directory_path() . '/simpletest'; $files = file_scan_directory($path, '/.*/'); |