summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200910155617_backfill_jira_tracker_deployment_type.rb
blob: 9c978a20d25b3b072325557fb7958ef9a6293323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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