Skip to content

Commit

Permalink
Merge pull request #339 from HeCorr/uuid-default
Browse files Browse the repository at this point in the history
Allow setting default value on UUID columns
  • Loading branch information
1ilit authored Feb 2, 2025
2 parents aaf83b6 + 910d473 commit da8961c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/data/datatypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ const defaultTypesBase = {
isSized: false,
hasCheck: false,
hasPrecision: false,
noDefault: true,
noDefault: false,
},
ENUM: {
type: "ENUM",
Expand Down Expand Up @@ -1208,7 +1208,7 @@ const postgresTypesBase = {
isSized: false,
hasPrecision: false,
hasQuotes: true,
noDefault: true,
noDefault: false,
},
XML: {
type: "XML",
Expand Down
5 changes: 5 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@
color: inherit;
}

:disabled {
/* inherit Semi's cursor style for disabled elements */
cursor: inherit;
}

::-webkit-scrollbar {
width: 8px;
height: 8px;
Expand Down

0 comments on commit da8961c

Please sign in to comment.