Multi-tenancy with and custom db tables

Hello,
I have a spring boot app that supports multitenancy (schema per tenant, same db) by using MultiSchemaMultiTenantProcessEngineConfiguration of Flowable.

I have added an additional schema manager in order to create some custom tables.
The creation is working (I checked the db and the tables are there) but when I try to save an entity by calling my repository I am getting “Table not exists” error. I figured that it tries to use the public schema which indeed doesn’t have the new tables.

I’ve managed to implement a workaround by implementing multitenancy with the hibernate way but I was wondering if there is a way that flowable handles it like it does with its own tables.