Quote:
Originally Posted by skhms
If you are willing to do SQL queries you can enter this at the Maintenance > Execute SQL Query Page:
Code:
ALTER TABLE user ALTER sk_repnotif_options SET DEFAULT '1'
This will make the option active as default for new users.
To activate it for all current user, use this:
Code:
UPDATE user SET sk_repnotif_options = '1'
Don't forget to add in your table prefix as well.
As always, be careful and take backups before you mess with the database.
/SK
|
This is the first time I will be executing a SQL query, can you tell me where exactly I must add my table prefix in the above code? Thanks.