summaryrefslogtreecommitdiff
path: root/db/post_migrate/20170408033905_remove_old_cache_directories.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20170408033905_remove_old_cache_directories.rb')
-rw-r--r--db/post_migrate/20170408033905_remove_old_cache_directories.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/db/post_migrate/20170408033905_remove_old_cache_directories.rb b/db/post_migrate/20170408033905_remove_old_cache_directories.rb
deleted file mode 100644
index 22bc5b9db7b..00000000000
--- a/db/post_migrate/20170408033905_remove_old_cache_directories.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-# Remove all files from old custom carrierwave's cache directories.
-# See https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/9466
-
-class RemoveOldCacheDirectories < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- # FileUploader cache.
- FileUtils.rm_rf(Dir[Rails.root.join('public', 'uploads', 'tmp', '*')])
- end
-
- def down
- # Old cache is not supposed to be recoverable.
- # So the down method is empty.
- end
-end