Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20230501090213_convert_ci_builds_to_list_partitioning.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2361ee1b97e7f599038afc75d2b4e53b3fcaa313 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class ConvertCiBuildsToListPartitioning < Gitlab::Database::Migration[2.1]
  def up
    # no-op to mitigate https://gitlab.com/gitlab-com/gl-infra/production/-/issues/13818
  end

  def down
    # no-op to mitigate https://gitlab.com/gitlab-com/gl-infra/production/-/issues/13818
  end
end