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

20231004080224_swap_columns_for_ci_stages_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: 38cbc52c24bd48b894f35ea9a447329b139965cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class SwapColumnsForCiStagesPipelineIdBigint < 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