summaryrefslogtreecommitdiff
path: root/db/post_migrate/20170408033905_remove_old_cache_directories.rb
blob: b23b52896b90f0b9dbb9fabea5d71afab83dc159 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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
  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