Heroku + Apartment: Apartment::FileNotFound: /app/db/schema.rb doesn't exist yet

288 Views Asked by At

I'm building a SAAS platform with heroku and Rails. For these, I'm managing the tenant with apartment gem.

In my local development this found without issues, but when I tried to use into heroku appear the next error:

/app/db/schema.rb doesn't exist yet

This error is produced it when run the next command:

Apartment::Tenant.create('foo_schema')

I'm going to write the main steps to setting up a heroku with subdomains + apartment configuration.

  1. Setting up a wildcard domain (This configuration it's ok).
  2. I'm using postgresql in production and development
  3. Setting up apartment.rb file into initializer directory.

my apartment.rb

require 'apartment/elevators/subdomain'

Apartment.configure do |config|
  config.excluded_models = %w{Account Company App Acteco Country Currency Price}
  config.tenant_names = lambda { Company.pluck(:slug) }
  config.use_schemas = true
end

Rails.application.config.middleware.insert_before Warden::Manager, Apartment::Elevators::Subdomain

Any suggestion ?

1

There are 1 best solutions below

1
On BEST ANSWER

Add db/schema.rb to your repository and push again?