6 lines
198 B
MySQL
6 lines
198 B
MySQL
|
INSERT INTO util.notification (id, name, description)
|
||
|
SELECT MAX(id) + 1,
|
||
|
'invoice-ticket-closure',
|
||
|
'Tickets not invoiced during the nightly closure ticket process'
|
||
|
FROM util.notification;
|