debian-mirror-gitlab/db/post_migrate/20200910155617_backfill_jira_tracker_deployment_type.rb
2021-01-03 14:25:43 +05:30

20 lines
435 B
Ruby

# frozen_string_literal: true
class BackfillJiraTrackerDeploymentType < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def up
# no-op
# this migration was reverted
# in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/45205
# due to https://gitlab.com/gitlab-com/gl-infra/production/-/issues/2820
end
def down
# no-op
# intentionally blank
end
end