mirror of
https://github.com/drawdb-io/drawdb.git
synced 2025-05-24 10:29:11 +00:00
extended the nvarchar for MSSQL
This commit is contained in:
parent
f9317797ec
commit
f4952a59d8
@ -1616,6 +1616,15 @@ const mssqlTypesBase = {
|
|||||||
defaultSize: 255,
|
defaultSize: 255,
|
||||||
hasQuotes: true,
|
hasQuotes: true,
|
||||||
},
|
},
|
||||||
|
'NVARCHAR(MAX)': {
|
||||||
|
type: "NVARCHAR",
|
||||||
|
checkDefault: (field) => true,
|
||||||
|
hasCheck: true,
|
||||||
|
isSized: false,
|
||||||
|
hasPrecision: false,
|
||||||
|
defaultSize: 'MAX',
|
||||||
|
hasQuotes: true,
|
||||||
|
},
|
||||||
TEXT: {
|
TEXT: {
|
||||||
type: "TEXT",
|
type: "TEXT",
|
||||||
checkDefault: (field) => true,
|
checkDefault: (field) => true,
|
||||||
|
Loading…
Reference in New Issue
Block a user