Skip to content

Commit 27885ac

Browse files
authored
Update active-repo-report.sql
1 parent 2b2a6c7 commit 27885ac

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

sql/security/active-repo-report.sql

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,10 @@ SELECT
1111
u.login AS repo_owner,
1212
u.type AS owner_type,
1313
pushed_at AS last_update,
14-
platform,
1514
severity,
1615
cve_id,
1716
ghsa_id,
18-
white_source_id,
19-
external_reference
17+
white_source_id
2018
FROM
2119
github_enterprise.repository_vulnerability_alerts z
2220
JOIN github_enterprise.vulnerabilities v ON
@@ -31,4 +29,4 @@ WHERE
3129
AND DATEDIFF(NOW(), r.pushed_at) < 91
3230
AND r.parent_id IS NULL
3331
ORDER BY
34-
last_update DESC;
32+
last_update DESC;

0 commit comments

Comments
 (0)