when i upload my DB to server i got this error
#1227 - Access denied; you need (at least one of) the SUPER privilege(s) for this operation
SQL query: Documentation
/*!50003 CREATE*/
/*!50017 DEFINER=`coinstourb_admin`@`localhost`*/
/*!50003 TRIGGER after_deposits_insert
AFTER INSERT ON hm2_deposits
FOR EACH ROW BEGIN DECLARE f INT;
SET f = (SELECT count(*) FROM hm2_user_balances WHERE user_id = NEW.user_id AND ec = NEW.ec AND type = 'active_deposit');
IF (f > 0 AND NEW.status = 'on') THEN
UPDATE hm2_user_balances SET amount = amount + NEW.actual_amount WHERE user_id = NEW.user_id AND ec = NEW.ec AND type = 'active_deposit';
ELSE
INSERT INTO hm2_user_balances SET amount = NEW.actual_amount, user_id = NEW.user_id, ec = NEW.ec, type = 'active_deposit';
END IF;
END */
this my database code
remove 'DEFINER=coinstourb_admin@localhost'