XF 2.2 Turn off email thread notifications for every user

Can someone help with a query that will uncheck this box for all users. Thanks
UPDATE xf_user_option SET interaction_watch_state = 'watch_no_email';
... for notifications, but no emails.

UPDATE xf_user_option SET interaction_watch_state = '';
... for no notifications or emails.
 
Back
Top Bottom