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

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

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

  def change
    add_column(:ci_resources, :partition_id, :bigint, default: 100, null: false)
  end
end