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

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

class AddPartitionIdToCiJobArtifactStates < Gitlab::Database::Migration[2.2]
  milestone '16.7'

  enable_lock_retries!

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