summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210602164044_schedule_latest_pipeline_id_population.rb
blob: dfd2806fece22c04c37b862344279c6afc2dfcf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class ScheduleLatestPipelineIdPopulation < ActiveRecord::Migration[6.1]
  def up
    # no-op: This migration has been marked as no-op and replaced by
    # `ReScheduleLatestPipelineIdPopulation` as we've found some problems.
    # For more information: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/65280
  end

  def down
    # no-op
  end
end