God has nothing to do with it, and YOU WILL ACCEPT IT.
However, it is quite easy to do the following (assume your table is called table_name)
create new table called table_name2 the way you want all the columns defined.
insert into table_name2 select * from table_name
(if the table is very large and you don't want to log the inserts, then use not logged initially and execute the insert in the same unit of work, and then commit)
rename table table_name to table_name3
rename table table_name2 to table_name
create indexes, views, rebind, etc