Skip to content

Commit 4be5c77

Browse files
authored
new event 2788 (#1372)
1 parent 8452999 commit 4be5c77

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
-- Insert AUTH_MFA_RESET_REQUESTED if it doesn't exist
2+
INSERT INTO conformed_refactored.batch_events_refactored (event_name, insert_timestamp, max_run_date)
3+
SELECT 'AUTH_MFA_RESET_REQUESTED', sysdate, '1999-01-01'
4+
WHERE NOT EXISTS (
5+
SELECT 1
6+
FROM conformed_refactored.batch_events_refactored
7+
WHERE event_name = 'AUTH_MFA_RESET_REQUESTED'
8+
);
9+

0 commit comments

Comments
 (0)