summaryrefslogtreecommitdiff
path: root/db/migrate/20230419130952_remove_github_import_job_instances.rb
blob: e7028032eb4463b765992940ce9624eadfb4ad59 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class RemoveGithubImportJobInstances < Gitlab::Database::Migration[2.1]
  def up
    # no-op to mitigate https://gitlab.com/gitlab-com/gl-infra/production/-/issues/9300
  end

  def down
    # no-op to mitigate https://gitlab.com/gitlab-com/gl-infra/production/-/issues/9300
  end
end