Disable noDefault on UUID type

so it is possible to set a default value on UUID columns
This commit is contained in:
HeCorr 2025-02-01 23:03:33 -03:00
parent aaf83b6f28
commit 1580650d92
No known key found for this signature in database
GPG Key ID: 9333B03459C34098

View File

@ -237,7 +237,7 @@ const defaultTypesBase = {
isSized: false, isSized: false,
hasCheck: false, hasCheck: false,
hasPrecision: false, hasPrecision: false,
noDefault: true, noDefault: false,
}, },
ENUM: { ENUM: {
type: "ENUM", type: "ENUM",
@ -1208,7 +1208,7 @@ const postgresTypesBase = {
isSized: false, isSized: false,
hasPrecision: false, hasPrecision: false,
hasQuotes: true, hasQuotes: true,
noDefault: true, noDefault: false,
}, },
XML: { XML: {
type: "XML", type: "XML",