Reset guided tours
The commands to reset the tours for users are either:
///Reset tour for a specific user
UPDATE public.guided_tours SET editor_tour_completed = 0 WHERE user_id = '<UUID>';
///Reset tour for all users
UPDATE public.guided_tours SET editor_tour_completed = false WHERE editor_tour_completed = true;