salix/db/routines/vn/events/vehicle_notify.sql

10 lines
302 B
MySQL
Raw Normal View History

DELIMITER $$
2024-08-20 08:06:10 +00:00
CREATE OR REPLACE DEFINER=`vn`@`localhost` EVENT `vn`.`vehicle_notify`
ON SCHEDULE EVERY 1 DAY
STARTS '2022-01-01 00:07:00.000'
ON COMPLETION NOT PRESERVE
ENABLE
COMMENT 'Notifies subscribed users of events in vehicles that are about t'
DO CALL vn.vehicle_notifyEvents$$
DELIMITER ;