summaryrefslogtreecommitdiff
path: root/db/migrate/20220523162734_add_vulnerability_reads_casted_cluster_agent_column.rb
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