As I can do two insert in a trigger try that but it does not work for me, if I put a single insert if it pulls but in phpmyadmin
CREATE TRIGGER update_alumnos AFTER INSERT ON Alumnos
FOR EACH ROW BEGIN
INSERT INTO Procesos VALUES (new.id,1,1)
INSERT INTO Validar_residencia VALUES (new.id,0,'sin observaciones')
END