Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
0c94848c
Commit
0c94848c
authored
Dec 03, 2020
by
Jonathan Schafer
Committed by
Adam Hegyi
Dec 03, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add vulnerability finding uuid to feedback
Includes migration, changelog and schema
parent
45a450aa
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
1 deletion
+18
-1
changelogs/unreleased/277130-add-a-new-column-called-finding_uuid-into-the-vulnerability_feedba.yml
...umn-called-finding_uuid-into-the-vulnerability_feedba.yml
+5
-0
db/migrate/20201201163227_add_finding_uuid_to_vulnerability_feedback.rb
...01201163227_add_finding_uuid_to_vulnerability_feedback.rb
+10
-0
db/schema_migrations/20201201163227
db/schema_migrations/20201201163227
+1
-0
db/structure.sql
db/structure.sql
+2
-1
No files found.
changelogs/unreleased/277130-add-a-new-column-called-finding_uuid-into-the-vulnerability_feedba.yml
0 → 100644
View file @
0c94848c
---
title
:
Add new column `finding_uuid` into `vulnerability_feedback` table
merge_request
:
48923
author
:
type
:
changed
db/migrate/20201201163227_add_finding_uuid_to_vulnerability_feedback.rb
0 → 100644
View file @
0c94848c
# 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
db/schema_migrations/20201201163227
0 → 100644
View file @
0c94848c
cc978ac56ed177575706436c52125b51915dff97a20ed47ae0c7b16caa837313
\ No newline at end of file
db/structure.sql
View file @
0c94848c
...
...
@@ -17376,7 +17376,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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment