summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210526222715_backfill_draft_status_on_merge_requests.rb
blob: 8ff0e306ad59ef73878a151f191dad845c94fdd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class BackfillDraftStatusOnMergeRequests < ActiveRecord::Migration[6.0]
  # include Gitlab::Database::MigrationHelpers

  # Marking these as no-op as the original contents caused timeouts on
  #   staging. Removing the code here per
  #   #https://docs.gitlab.com/ee/development/deleting_migrations.html#how-to-disable-a-data-migration
  # =>
  def up
    # no-op
  end

  def down
    # no-op
  end
end