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

20230701043315_ensure_backfill_for_ci_pipeline_variables_pipeline_id_is_finished.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 28c520fea6b12c8f4fafc876a9a26594cb9117c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class EnsureBackfillForCiPipelineVariablesPipelineIdIsFinished < Gitlab::Database::Migration[2.1]
  include Gitlab::Database::MigrationHelpers::ConvertToBigint

  restrict_gitlab_migration gitlab_schema: :gitlab_ci
  disable_ddl_transaction!

  TABLE_NAME = :ci_pipeline_variables

  def up
    # no-op
  end

  def down
    # no-op
  end
end