Skip to content

Commit da8961c

Browse files
authored
Merge pull request #339 from HeCorr/uuid-default
Allow setting default value on UUID columns
2 parents aaf83b6 + 910d473 commit da8961c

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/data/datatypes.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ const defaultTypesBase = {
237237
isSized: false,
238238
hasCheck: false,
239239
hasPrecision: false,
240-
noDefault: true,
240+
noDefault: false,
241241
},
242242
ENUM: {
243243
type: "ENUM",
@@ -1208,7 +1208,7 @@ const postgresTypesBase = {
12081208
isSized: false,
12091209
hasPrecision: false,
12101210
hasQuotes: true,
1211-
noDefault: true,
1211+
noDefault: false,
12121212
},
12131213
XML: {
12141214
type: "XML",

src/index.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@
6262
color: inherit;
6363
}
6464

65+
:disabled {
66+
/* inherit Semi's cursor style for disabled elements */
67+
cursor: inherit;
68+
}
69+
6570
::-webkit-scrollbar {
6671
width: 8px;
6772
height: 8px;

0 commit comments

Comments
 (0)