salix/db/routines/vn/triggers/deviceProductionUser_afterD...

13 lines
372 B
SQL

DELIMITER $$
CREATE OR REPLACE DEFINER=`root`@`localhost` TRIGGER `vn`.`deviceProductionUser_afterDelete`
AFTER DELETE ON `deviceProductionUser`
FOR EACH ROW
BEGIN
INSERT INTO deviceProductionLog
SET `action` = 'delete',
`changedModel` = 'DeviceProductionUser',
`changedModelId` = OLD.deviceProductionFk,
`userFk` = account.myUser_getId();
END$$
DELIMITER ;