I am using Esqueleto with Postgres and I see no way to specify the schema the table is in. I am currently releasing the following sql for installing schemas:
set search_path to foo,bar;
This allows me to use the tables I want if they are in a foo schema or schema. Is there a way to set the schema for each table?
source
share