Does geometry type actually exist in public schema (or at all)? Is it in draft_ilias? Maybe try removing the schema (“public.”) if you’re already in the correct context?
EDIT: Seems like maybe you’re using PostGIS. Not familiar with it, but you need to run a command to install it CREATE EXTENSION POSTGIS
, and then geometry type should just be accessible globally according to their docs, don’t have to qualify it with a schema. Would need more info on what geometry type is, where it lives, etc.