schemazen
schemazen copied to clipboard
Support persisted computed columns
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)