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

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

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

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