Skip to content

Commit

Permalink
Merge pull request #547 from digitallyinduced/danielsonnenberg/ch2106…
Browse files Browse the repository at this point in the history
…/schemadesigner-binary-auf-bytea-mappen

Binary equals to BYTEA in postgres (UI)
  • Loading branch information
mpscholten authored Nov 13, 2020
2 parents 58f2fc0 + 39e0c08 commit 45cf132
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion IHP/IDE/SchemaDesigner/View/Columns/Edit.hs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ typeSelector postgresType enumNames = [hsx|
{option selected "REAL" "Float"}
{option selected "DOUBLE PRECISION" "Double"}
{option selected "DATE" "Date"}
{option selected "BINARY" "Binary"}
{option selected "BYTEA" "Binary"}
{option selected "Time" "Time"}
{option selected "SERIAL" "Serial"}
{option selected "BIGSERIAL" "Bigserial"}
Expand Down
1 change: 1 addition & 0 deletions IHP/IDE/SchemaDesigner/View/Layout.hs
Original file line number Diff line number Diff line change
Expand Up @@ -427,4 +427,5 @@ isIllegalKeyword input = case (toUpper input) of
"RIGHT" -> True
"SIMILAR" -> True
"VERBOSE" -> True
"BYTEA" -> True
_ -> False

0 comments on commit 45cf132

Please sign in to comment.