Colin Watson has proposed merging ~cjwatson/launchpad:merge-db-stable into 
launchpad:master.

Commit message:
Merge db-stable b434ff98d6 (Add vulnerability and vulnerabilityactivity)

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/419039
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of 
~cjwatson/launchpad:merge-db-stable into launchpad:master.
diff --git a/database/schema/patch-2210-42-0.sql b/database/schema/patch-2210-42-0.sql
new file mode 100644
index 0000000..dca662e
--- /dev/null
+++ b/database/schema/patch-2210-42-0.sql
@@ -0,0 +1,69 @@
+-- Copyright 2022 Canonical Ltd.  This software is licensed under the
+-- GNU Affero General Public License version 3 (see the file LICENSE).
+
+SET client_min_messages=ERROR;
+
+CREATE TABLE vulnerability (
+    id serial PRIMARY KEY,
+    distribution integer REFERENCES Distribution NOT NULL,
+    cve integer REFERENCES CVE,
+    status integer NOT NULL,
+    description text,
+    notes text,
+    mitigation text,
+    importance integer NOT NULL,
+    importance_explanation text,
+    information_type integer DEFAULT 1 NOT NULL,
+    date_created timestamp without time zone DEFAULT (CURRENT_TIMESTAMP AT TIME ZONE 'UTC') NOT NULL,
+    creator integer REFERENCES Person NOT NULL,
+    date_made_public timestamp without time zone
+);
+
+COMMENT ON TABLE vulnerability IS 'Expresses the notion of whether a CVE affects a distribution.';
+COMMENT ON COLUMN vulnerability.distribution IS 'The distribution affected by this vulnerability.';
+COMMENT ON COLUMN vulnerability.cve IS 'The external CVE reference corresponding to this vulnerability, if any.';
+COMMENT ON COLUMN vulnerability.status IS 'Indicates current status of the vulnerability.';
+COMMENT ON COLUMN vulnerability.description IS 'Overrides the Cve.description.';
+COMMENT ON COLUMN vulnerability.notes IS 'Free-form notes.';
+COMMENT ON COLUMN vulnerability.mitigation IS 'Explain why we''re ignoring something.';
+COMMENT ON COLUMN vulnerability.importance IS 'Indicates work priority, not severity.';
+COMMENT ON COLUMN vulnerability.importance_explanation IS 'Used to explain why our importance differs from somebody else''s CVSS score.';
+COMMENT ON COLUMN vulnerability.information_type IS 'Indicates privacy of the vulnerability.';
+COMMENT ON COLUMN vulnerability.date_created IS 'The date when the vulnerability was created.';
+COMMENT ON COLUMN vulnerability.creator IS 'The person that created the vulnerability.';
+COMMENT ON COLUMN vulnerability.date_made_public IS 'The date this vulnerability was made public.';
+
+CREATE UNIQUE INDEX vulnerability__distribution__cve__key
+    ON vulnerability (distribution, cve);
+
+CREATE INDEX vulnerability__cve__idx
+    ON vulnerability (cve);
+
+CREATE INDEX vulnerability__creator__idx
+    ON vulnerability (creator);
+
+CREATE TABLE vulnerabilityactivity (
+    id serial PRIMARY KEY,
+    vulnerability integer REFERENCES Vulnerability NOT NULL,
+    changer integer REFERENCES Person NOT NULL,
+    date_changed timestamp without time zone NOT NULL,
+    what_changed integer NOT NULL,
+    old_value text,
+    new_value text
+);
+
+COMMENT ON TABLE vulnerabilityactivity IS 'Tracks changes to vulnerability rows.';
+COMMENT ON COLUMN vulnerabilityactivity.vulnerability IS 'The vulnerability that the changes refer to.';
+COMMENT ON COLUMN vulnerabilityactivity.changer IS 'The person that made the changes.';
+COMMENT ON COLUMN vulnerabilityactivity.date_changed IS 'The date when the vulnerability details last changed.';
+COMMENT ON COLUMN vulnerabilityactivity.what_changed IS 'Indicates what field changed for the vulnerability by means of an enum.';
+COMMENT ON COLUMN vulnerabilityactivity.old_value IS 'The value prior to the change.';
+COMMENT ON COLUMN vulnerabilityactivity.new_value IS 'The current value.';
+
+CREATE INDEX vulnerabilityactivity__vulnerability__date_changed__idx
+    ON vulnerabilityactivity (vulnerability, date_changed);
+
+CREATE INDEX vulnerabilityactivity__changer__idx
+    ON vulnerabilityactivity (changer);
+
+INSERT INTO LaunchpadDatabaseRevision VALUES (2210, 42, 0);
diff --git a/database/schema/security.cfg b/database/schema/security.cfg
index ada34e5..a09a3d7 100644
--- a/database/schema/security.cfg
+++ b/database/schema/security.cfg
@@ -353,6 +353,8 @@ public.validpersoncache                 = SELECT
 public.validpersonorteamcache           = SELECT
 public.vote                             = SELECT, INSERT, UPDATE
 public.votecast                         = SELECT, INSERT
+public.vulnerability                    = SELECT, INSERT, UPDATE, DELETE
+public.vulnerabilityactivity            = SELECT, INSERT, UPDATE, DELETE
 public.webhook                          = SELECT, INSERT, UPDATE, DELETE
 public.webhookjob                       = SELECT, INSERT, UPDATE, DELETE
 public.wikiname                         = SELECT, INSERT, UPDATE, DELETE
@@ -2460,6 +2462,8 @@ public.translator                       = SELECT, UPDATE
 public.usertouseremail                  = SELECT, UPDATE
 public.vote                             = SELECT, UPDATE
 public.votecast                         = SELECT, UPDATE
+public.vulnerability                    = SELECT, UPDATE
+public.vulnerabilityactivity            = SELECT, UPDATE
 public.webhook                          = SELECT, UPDATE
 public.wikiname                         = SELECT, UPDATE
 public.xref                             = SELECT, UPDATE
_______________________________________________
Mailing list: https://launchpad.net/~launchpad-reviewers
Post to     : launchpad-reviewers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~launchpad-reviewers
More help   : https://help.launchpad.net/ListHelp

Reply via email to