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

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

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

  def change
    add_column :vulnerability_reads, :casted_cluster_agent_id, :bigint
  end
end