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

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

class SwapColumnsForCiPipelinesPipelineIdBigint < Gitlab::Database::Migration[2.1]
  disable_ddl_transaction!

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

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