It's a small issue, in my postgres database (through supabase), i have a custom type:
CREATE DOMAIN api.rating_value AS FLOAT CHECK (VALUE BETWEEN 0 AND 5);
And the generated schema column for columns with that data type turns out to be Column.text instead of Column.real (i'm using dart/flutter)
It would be great if it could detect the subtype of the custom type, if not it would be nice a warning/comment while generating the schema like: x column datatype not recognized, assigned text type