We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e72f99 commit 16eb65aCopy full SHA for 16eb65a
sql/security/vuln-report.sql
@@ -8,12 +8,10 @@ SELECT
8
u.login as repo_owner,
9
u.type as owner_type,
10
pushed_at as last_update,
11
- platform,
12
severity,
13
cve_id,
14
ghsa_id,
15
- white_source_id,
16
- external_reference
+ white_source_id
17
FROM
18
github_enterprise.repository_vulnerability_alerts z
19
JOIN github_enterprise.vulnerabilities v ON
@@ -23,4 +21,4 @@ JOIN github_enterprise.repositories r ON
23
21
JOIN github_enterprise.users u ON
24
22
r.owner_id = u.id
25
ORDER BY
26
- last_update DESC;
+ last_update DESC;
0 commit comments