mirror of
https://github.com/drawdb-io/drawdb.git
synced 2026-02-11 02:00:37 +08:00
Merge pull request #339 from HeCorr/uuid-default
Allow setting default value on UUID columns
This commit is contained in:
@@ -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",
|
||||||
|
|||||||
@@ -62,6 +62,11 @@
|
|||||||
color: inherit;
|
color: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
:disabled {
|
||||||
|
/* inherit Semi's cursor style for disabled elements */
|
||||||
|
cursor: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
width: 8px;
|
width: 8px;
|
||||||
height: 8px;
|
height: 8px;
|
||||||
|
|||||||
Reference in New Issue
Block a user