Using TFS
When a column has a default value constraint that calls a scalar function that looks like this
dbo.someFunc(param1, DEFAULT)
the word default is stripped and yhis gets committed
dbo.someFunc(param1, )
System then shows the table as having changes that are not commited.
work around is to write the constraint as
dbo.someFunc(param1, 0)
When a column has a default value constraint that calls a scalar function that looks like this
dbo.someFunc(param1, DEFAULT)
the word default is stripped and yhis gets committed
dbo.someFunc(param1, )
System then shows the table as having changes that are not commited.
work around is to write the constraint as
dbo.someFunc(param1, 0)