Buscando un poco encontre
esto:
Cita: Actually, you cannot ALTER the DEFAULT value, only ADD a column with a DEFAULT value, or change the data type settings.
Segun dicen, la manera de lograrlo es creando un constraint para la tabla:
ALTER TABLE tabla ADD CONSTRAINT mi_constraint DEFAULT GETDATE() FOR el_campo