quote:
Originally posted by masterao
It is there in case M_AUHIDE already exists in the member-table.
Thanks, I see it now.
If anyone is interested, I did some searching and testing and in mySql use
ALTER TABLE FORUM_MEMBERS CHANGE COLUMN M_AUHIDE[old name] M_AUHIDE[new name] varchar(1) NULL
orALTER TABLE FORUM_MEMBERS MODIFY COLUMN M_AUHIDE varchar(1) NULL
ALTER COLUMN is used to set or reset a default value.