Code:
RUN SQL (use mySQL or phpMyAdmin etc.):
---------------------------------------------------------------------------------------------------------
ALTER TABLE user ADD usereplacementscensor TINYINT(1) NOT NULL DEFAULT '1' AFTER pmunread;
---------------------------------------------------------------------------------------------------------
The default value of 1 means that users WILL use the censorship by default unless
they turn it off. If you would prefer it to be OFF by default, then use this
INSTEAD:
ALTER TABLE user ADD usereplacementscensor TINYINT(1) NOT NULL DEFAULT '0' AFTER pmunread;
If you change your mind you can change the default using:
ALTER TABLE user ALTER COLUMN usereplacementscensor SET DEFAULT '1';
(or SET DEFAULT '0' as appropriate).
Hello... I don't believe I have access to run these things with my host. Is there a work around or do I have to have them run this for me?