operator is not unique: geometry = bytea
but the type is correct:
SELECT
a.attname AS column_name,
t.typname AS type_name,
pg_catalog.format_type(a.atttypid, a.atttypmod) AS full_type
FROM
pg_attribute a
JOIN
pg_class c ON a.attrelid = c.oid
JOIN
pg_namespace n ON c.relnamespace = n.oid
JOIN
pg_type t ON a.atttypid = t.oid
WHERE
c.relname = 'reservation'
AND a.attname = 'order_center'
AND a.attnum > 0
AND NOT a.attisdropped;
the result is in the image.
aswell as the output of the member.
i am using the package:
.package(url: "https://github.com/brokenhandsio/fluent-postgis.git", from: "0.5.0")