我使用Heroku Connect从我的组织访问salesforce数据。以下是通过纯Ruby代码正常访问的方式。我想知道RoR中的等价物
class Contact < ActiveRecord::Base
self.table_name = 'salesforce.contact'
end
get "/contacts" do
@contacts = Contact.all
erb :index
end
当我检查Postgres表时,它显示我的应用程序中的常用模型位于公开下,而heroku导入的模型位于 salesforce 模式下。 问:如何在RoR中访问非公共表?我是否创建了一个新模型&#39;?