7226-testToMaster_2416 #2320

Merged
alexm merged 188 commits from 7226-testToMaster_2416 into master 2024-04-18 05:39:36 +00:00
1 changed files with 9 additions and 0 deletions
Showing only changes of commit 77d1a38a87 - Show all commits

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;