I am able to deploy a User Defined Table Type in SSMS with a default value like this:
CREATE TYPE [MySchema].[Test] AS TABLE
(
[TestColumn] BIT NOT NULL DEFAULT 0
)
When I pull the source after deploying the DEFAULT 0 is gone:
CREATE TYPE [MySchema].[Test] AS TABLE(
[TestColumn] [bit] NOT NULL
)
Why doesn't SSMS show the DEFAULT 0 anymore?