mirror of
https://github.com/drawdb-io/drawdb.git
synced 2025-05-24 10:29:11 +00:00
NVARCHAR(MAX) support in NVARCHAR
This commit is contained in:
parent
881768b765
commit
7d80cd64c4
@ -1616,6 +1616,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,
|
||||
|
Loading…
Reference in New Issue
Block a user