summaryrefslogtreecommitdiff
path: root/db/migrate/20220720161816_add_namespace_id_to_vulnerability_reads_table.rb
blob: b6af71eb0882751c36bb66e761949f26c874be25 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

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