That's be tricky as you'd have to create a record for every subscription for every user.
To do it on a going-forward basis, the following query will change every user's thread subscription in their preferences to "Subscribe with no notification"...
[SQL]
UPDATE user SET autosubscribe = 0
[/SQL]
Make sure you backup your database in case you don't like what it does!
|