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

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

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

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