salix/db/routines/vn/triggers/zoneIncluded_beforeInsert.sql

12 lines
304 B
MySQL
Raw Normal View History

DELIMITER $$
CREATE OR REPLACE DEFINER=`root`@`localhost` TRIGGER `vn`.`zoneIncluded_beforeInsert`
BEFORE INSERT ON `zoneIncluded`
BEGIN
SET NEW.editorFk = account.myUser_getId();
2024-02-12 10:37:08 +00:00
-- Activo el evento 'zone_getCollisions'
2024-02-12 14:13:18 +00:00
-- Insert en vn_schedulesla key 'zone_getCollisions'
END$$
DELIMITER ;