update xf_forum
set send_notifications_for_by_default = 'thread';
update xf_forum
set send_notifications_for_by_default = 'followed_user_thread';
insert ignore into xf_forum_watch (user_id, node_id, notify_on,send_alert)
select xf_user.user_id, xf_forum.node_id, 'followed_user_thread', 1
from xf_user, xf_forum
where xf_user.is_banned = 0 and xf_user.user_state = 'valid'