mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-09 20:21:53 +01:00
4aca812ff2
Signed-off-by: Daniel Jiang <jiangd@vmware.com>
10 lines
301 B
SQL
10 lines
301 B
SQL
/* add table for CVE whitelist */
|
|
CREATE TABLE cve_whitelist (
|
|
id SERIAL PRIMARY KEY NOT NULL,
|
|
project_id int,
|
|
creation_time timestamp default CURRENT_TIMESTAMP,
|
|
update_time timestamp default CURRENT_TIMESTAMP,
|
|
expires_at bigint,
|
|
items text NOT NULL,
|
|
UNIQUE (project_id)
|
|
); |