6π
I resolved the issue by my own. The reason was unexpected, because the error is not that informative. I checked the permission to create tables in the schema my_custom_schema
for the user and found out the itβs not permitted. So after I granted the permission everything worked well.
GRANT ALL ON SCHEMA my_custom_schema TO my_user;
π€Fomalhaut
Source:stackexchange.com