summaryrefslogtreecommitdiff
path: root/modules/image
diff options
context:
space:
mode:
Diffstat (limited to 'modules/image')
-rw-r--r--modules/image/image.install4
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/image/image.install b/modules/image/image.install
index b963605dc..8cd205e19 100644
--- a/modules/image/image.install
+++ b/modules/image/image.install
@@ -10,8 +10,6 @@
* Implement hook_install().
*/
function image_install() {
- drupal_install_schema('image');
-
// Create the styles directory and ensure it's writable.
$path = file_directory_path() . '/styles';
file_prepare_directory($path, FILE_CREATE_DIRECTORY | FILE_MODIFY_PERMISSIONS);
@@ -21,8 +19,6 @@ function image_install() {
* Implement hook_uninstall().
*/
function image_uninstall() {
- drupal_uninstall_schema('image');
-
// Remove the styles directory and generated images.
$path = file_directory_path() . '/styles';
file_unmanaged_delete_recursive($path);