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

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

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

  def change
    add_column :ci_pipelines, :partition_id, :bigint, default: 100, null: false
  end
end