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

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

class AddClusterAgentIdToVulnerabilityReads < Gitlab::Database::Migration[1.0]
  # rubocop:disable Migration/AddLimitToTextColumns
  # limit is added in 20211216134134_add_text_limit_to_vulnerability_reads_cluster_agent_id.rb
  def change
    add_column :vulnerability_reads, :cluster_agent_id, :text
  end
  # rubocop:enable Migration/AddLimitToTextColumns
end