I'm now learning about the create event in mysql
I am creating a simple test event, but it is not working, it appears in Events, but the table is not updated:
CREATE EVENT teste
ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 10 SECOND
DO
UPDATE euk_teste SET status=2 WHERE id_produto=1;
Is there anything missing? Do I need to enable something?