Commit 0c94848c authored by Jonathan Schafer's avatar Jonathan Schafer Committed by Adam Hegyi

Add vulnerability finding uuid to feedback

Includes migration, changelog and schema
parent 45a450aa
---
title: Add new column `finding_uuid` into `vulnerability_feedback` table
merge_request: 48923
author:
type: changed
# frozen_string_literal: true
class AddFindingUuidToVulnerabilityFeedback < ActiveRecord::Migration[6.0]
# Set this constant to true if this migration requires downtime.
DOWNTIME = false
def change
add_column :vulnerability_feedback, :finding_uuid, :uuid
end
end
cc978ac56ed177575706436c52125b51915dff97a20ed47ae0c7b16caa837313
\ No newline at end of file
...@@ -17376,7 +17376,8 @@ CREATE TABLE vulnerability_feedback ( ...@@ -17376,7 +17376,8 @@ CREATE TABLE vulnerability_feedback (
merge_request_id integer, merge_request_id integer,
comment_author_id integer, comment_author_id integer,
comment text, comment text,
comment_timestamp timestamp with time zone comment_timestamp timestamp with time zone,
finding_uuid uuid
); );
CREATE SEQUENCE vulnerability_feedback_id_seq CREATE SEQUENCE vulnerability_feedback_id_seq
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment