salix/db/routines/vn/triggers/expeditionScan_beforeInsert...

11 lines
212 B
MySQL
Raw Normal View History

DELIMITER $$
2024-08-20 08:06:10 +00:00
CREATE OR REPLACE DEFINER=`vn`@`localhost` TRIGGER `vn`.`expeditionScan_beforeInsert`
BEFORE INSERT ON `expeditionScan`
FOR EACH ROW
BEGIN
SET NEW.workerFk = vn.getUser();
END$$
DELIMITER ;