schemazen icon indicating copy to clipboard operation
schemazen copied to clipboard

Support persisted computed columns

Open benjamin-hodgson opened this issue 8 years ago • 0 comments

Given the schema:

create table MyTable (Id int, IdPlusOne as [Id]+1 persisted not null)

SchemaZen outputs the computed column without the persisted not null specification:

CREATE TABLE MyTable (Id int, IdPlusOne as [Id]+1)

benjamin-hodgson avatar Mar 11 '16 14:03 benjamin-hodgson