How to change one attribute in a table using T-SQL to allow nulls (not null --> null)? Alter table maybe?
So the simplest way is,
alter table table_name change column_name column_name int(11) NULL;