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

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

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

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