We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I'm trying to use a Postgres enum type and It get the following error:
ERROR: UNION types text and my_enum_type cannot be matched
The implicit Meta[MyEnumType] is defined with pgEnumString("my_enum_type", MyEnumType.fromString, _.value) and all the wiring seems to be fine.
Meta[MyEnumType]
pgEnumString("my_enum_type", MyEnumType.fromString, _.value)
Thank you.
Activity