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

20210707113056_add_tags_array_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: 229dc01fb87ac9426c90f940858c5460219b702d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class AddTagsArrayToCiPendingBuilds < ActiveRecord::Migration[6.1]
  include Gitlab::Database::MigrationHelpers

  def up
    with_lock_retries do
      add_column :ci_pending_builds, :tag_ids, :integer, array: true, default: []
    end
  end

  def down
    with_lock_retries do
      remove_column :ci_pending_builds, :tag_ids
    end
  end
end