Merge pull request #339 from HeCorr/uuid-default
Allow setting default value on UUID columns
This commit is contained in:
commit
da8961c584
@ -237,7 +237,7 @@ const defaultTypesBase = {
|
||||
isSized: false,
|
||||
hasCheck: false,
|
||||
hasPrecision: false,
|
||||
noDefault: true,
|
||||
noDefault: false,
|
||||
},
|
||||
ENUM: {
|
||||
type: "ENUM",
|
||||
@ -1208,7 +1208,7 @@ const postgresTypesBase = {
|
||||
isSized: false,
|
||||
hasPrecision: false,
|
||||
hasQuotes: true,
|
||||
noDefault: true,
|
||||
noDefault: false,
|
||||
},
|
||||
XML: {
|
||||
type: "XML",
|
||||
|
@ -62,6 +62,11 @@
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
:disabled {
|
||||
/* inherit Semi's cursor style for disabled elements */
|
||||
cursor: inherit;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
|
Loading…
Reference in New Issue
Block a user