This commit is contained in:
sudhir 2025-05-07 19:03:42 -03:00 committed by GitHub
commit 90f9585546
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1674,6 +1674,15 @@ const mssqlTypesBase = {
defaultSize: 255,
hasQuotes: true,
},
'NVARCHAR(MAX)': {
type: "NVARCHAR",
checkDefault: (field) => true,
hasCheck: true,
isSized: false,
hasPrecision: false,
defaultSize: 'MAX',
hasQuotes: true,
},
TEXT: {
type: "TEXT",
checkDefault: (field) => true,