Commit 5e7f146b authored by Adam Hegyi's avatar Adam Hegyi

Merge branch...

Merge branch '277130-add-a-new-column-called-finding_uuid-into-the-vulnerability_feedback-table' into 'master'

Add new column `finding_uuid` into `vulnerability_feedback` table

See merge request gitlab-org/gitlab!48923
parents 24e58559 0c94848c
---
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
......@@ -17377,7 +17377,8 @@ CREATE TABLE vulnerability_feedback (
merge_request_id integer,
comment_author_id integer,
comment text,
comment_timestamp timestamp with time zone
comment_timestamp timestamp with time zone,
finding_uuid uuid
);
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