You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
YZWL/IDEA/sys/sys_config_update_set_user.sql

11 lines
267 B

create definer = `mysql.sys`@localhost trigger sys.sys_config_update_set_user
before update
on sys.sys_config
for each row
BEGIN
IF @sys.ignore_sys_config_triggers != true AND NEW.set_by IS NULL THEN
SET NEW.set_by = USER();
END IF;
END;