fix: closeTicket idem salix refs #6549
gitea/salix/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Carlos Andrés 2024-03-13 18:51:11 +01:00
parent ff459ea3be
commit 77d1a38a87
1 changed files with 9 additions and 0 deletions

View File

@ -3,3 +3,12 @@ INSERT INTO util.notification (id, name, description)
'invoice-ticket-closure',
'Tickets not invoiced during the nightly closure ticket process'
FROM util.notification;
INSERT IGNORE INTO util.notificationAcl (notificationFk, roleFk)
SELECT MAX(id), 108
FROM util.notification;
INSERT IGNORE INTO util.notificationSubscription (notificationFk, userFk)
SELECT MAX(id), 108
FROM util.notification;