mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-11 01:53:39 +00:00
4 lines
120 B
MySQL
4 lines
120 B
MySQL
|
CREATE TRIGGER copy_to_outbox
|
||
|
AFTER INSERT ON eventstore.events2
|
||
|
FOR EACH ROW EXECUTE FUNCTION copy_events_to_outbox();
|