-- Place your SQL code here
ALTER TABLE vn.mrwConfig ADD IF NOT EXISTS notified TIMESTAMP NULL
COMMENT 'Date when it was notified that the web service deadline was exceeded';

INSERT IGNORE INTO util.notification
    SET name = 'mrw-deadline',
        description = 'The MRW deadline has passed';

INSERT IGNORE INTO util.notificationAcl (notificationFk, roleFK)
    SELECT LAST_INSERT_ID(), r.id 
        FROM account.role r
        WHERE r.name = 'delivery'