debian-mirror-gitlab/db/migrate/20230307212637_remove_create_learn_gitlab_worker_job_instances.rb
2023-06-20 00:43:36 +05:30

12 lines
317 B
Ruby

# 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