I need to change a default constraint value from 0 to 1. This is done easy with:
ALTER TABLE table DROP CONSTRAINT X
ALTER TABLE table ADD CONSTRAINT X default (1) for table.column
The problem is that I don't want to drop and create a new constraint every time I run modelupdate on my database. That's why I want to run this code IF the value of the constraint is 0.
Is it possible to check the value of a default constraint in SQL, if yes, how?