Skip to content

Commit

Permalink
relates to #2020
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikEJ committed Nov 27, 2023
1 parent cc2019a commit 595ff3c
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,11 @@ private static string GetStoreType(string dataTypeName, int maxLength, int preci
return "rowversion";
}

if (dataTypeName == "sysname")
{
return "nvarchar(128)";
}

if (dataTypeName == "decimal"
|| dataTypeName == "numeric")
{
Expand Down

0 comments on commit 595ff3c

Please sign in to comment.