mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-01-31 11:46:16 +08:00
- Add is_reviewed and reviewed_at fields to vulnerability table - Add PATCH /api/vulnerabilities/:id/review and /unreview endpoints - Add POST /api/vulnerabilities/bulk-review and /bulk-unreview endpoints - Add isReviewed filter parameter to list APIs - Update frontend with review status indicator, filter tabs, and bulk actions - Add i18n translations for review status
6 lines
196 B
SQL
6 lines
196 B
SQL
-- Remove review status fields from vulnerability table
|
|
DROP INDEX IF EXISTS idx_vuln_is_reviewed;
|
|
ALTER TABLE vulnerability
|
|
DROP COLUMN IF EXISTS reviewed_at,
|
|
DROP COLUMN IF EXISTS is_reviewed;
|