sethreno / schemazen

Script and create SQL Server objects quickly
MIT License
333 stars 140 forks source link

RowGUID #125

Open fued opened 7 years ago

fued commented 7 years ago

rowguid is not importing/creating correctly in sql server 2016

if you change column.cs to this:

case "sysname": if (IsRowGuidCol) val.Append(@" ROWGUIDCOL"); val.Append($" {IsNullableText}"); if (includeDefaultConstraint) val.Append(DefaultText); if (Identity != null) val.Append(IdentityText);

                return val.ToString();

it will work