summaryrefslogtreecommitdiff
path: root/db/post_migrate/20230501090213_convert_ci_builds_to_list_partitioning.rb
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