I use ms sql 2008 I have problem to add a default value to a column on a specific table.
ALTER TABLE dbo.CmsAuthors
ALTER COLUMN IsContentAuthorPublished
ADD CONSTRAINT DF_CmsAuthors_IsContentAuthorPublished DEFAULT 0
Could you tell me what I’m doing wrong here?
Thanks
1 Answer