Rails - active storage and multi databases

280 views Asked by At

Is is possible to use active storage with multi databases in rails? I have the following models:

class ApplicationRecord < ActiveRecord::Base
  self.abstract_class = true
end


class OtherRecord < ActiveRecord::Base
  self.abstract_class = true

  connects_to database: { writing: :other_db }
end


class SomeModel < OtherRecord
  has_many_attached :files
end

I've added active storage migrations scoped to the secondary database and necessary tables were created there but ActiveStorage seems to look for tables in primary database. Have anyone a solution for that?

0

There are 0 answers