1ALTER TABLE SomeTable
2 ADD SomeCol Bit NULL --Or NOT NULL.
3 CONSTRAINT D_SomeTable_SomeCol --When Omitted a Default-Constraint Name is autogenerated.
4 DEFAULT (0)--Optional Default-Constraint.
5WITH VALUES --Add if Column is Nullable and you want the Default Value for Existing Records.