Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20210205174154_remove_bad_dependency_proxy_manifests.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb302fb7009223a6633d4c80de6af533e2128a19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class RemoveBadDependencyProxyManifests < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def up
    # We run destroy on each record because we need the callback to remove
    # the underlying files
    DependencyProxy::Manifest.where.not(content_type: nil).destroy_all # rubocop:disable Cop/DestroyAll
  end

  def down
    # no op
  end
end