If you are running SQL Server 2005 or later, you can use this script to create another script that will then drop all of your default restrictions:
SELECT
'ALTER TABLE dbo.' + OBJECT_NAME(parent_object_id) +
' DROP CONSTRAINT ' + Name
FROM
sys.default_constraints
This will create a series of operators as output, such as
ALTER TABLE dbo.YourTable DROP CONSTRAINT DF_T_YourColumn
SQL Server Management Studio , !