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

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

class AddNamespaceTraversalIdsToCiPendingBuilds < Gitlab::Database::Migration[1.0]
  enable_lock_retries!

  def change
    add_column :ci_pending_builds, :namespace_traversal_ids, :integer, array: true, default: []
  end
end