Trying to use PostgreSQL schema different than public is not generating the schema.rb file properly

Hello all,

Here in my project I do have the need to separate some tables into different postgres schemas, per example, schema_accounts and schema_payments.

When I choose to do that my migrations run perfectly, but when I try to run my unit tests they break because my schema.rb is not being properly created. So when the rake tasks run they drop my test database but do not re-create my schemas and everything break. On Rails the solution for that is using the config.active_record.schema_format = :sql to generate the schema into raw sql. For my case here this is not a problem, I don’t need my schema to be agnostic, but this option is not availabe on Jets. There is a way to set-up this configuration on Jets?

Thanks in advance.