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. Thank you.