mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 19:02:41 +01:00
6 lines
234 B
MySQL
6 lines
234 B
MySQL
|
UPDATE {$NAMESPACE}_repository.repository_auditrequest
|
||
|
SET auditStatus = 'accepted' WHERE auditStatus = 'closed';
|
||
|
|
||
|
DELETE FROM {$NAMESPACE}_repository.repository_auditrequest
|
||
|
WHERE auditStatus IN ('', 'cc', 'audit-not-required');
|