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

20221128123514_add_source_partition_id_to_ci_sources_pipeline.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a98cdbf88de6828d444eab82aaf7fc8d3679c8cd (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddSourcePartitionIdToCiSourcesPipeline < Gitlab::Database::Migration[2.0]
  enable_lock_retries!

  def change
    add_column :ci_sources_pipelines, :source_partition_id, :bigint, default: 100, null: false
  end
end