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

class RemoveCreateLearnGitlabWorkerJobInstances < Gitlab::Database::Migration[2.1]
  def up
    # No-op to fix https://gitlab.com/gitlab-com/gl-infra/production/-/issues/8612
  end

  def down
    # No-op to fix https://gitlab.com/gitlab-com/gl-infra/production/-/issues/8612
  end
end