debian-mirror-gitlab/db/post_migrate/20230501090213_convert_ci_builds_to_list_partitioning.rb
2023-07-09 08:55:56 +05:30

12 lines
321 B
Ruby

# 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