我为我的 Rails 应用程序使用了两个不同的数据库:MongoDB
分别MsSQL
使用Mongoid
和activerecord-sqlserver-adapter
适配器。一切都很好,但是生成模型时出现了问题。
问题是“我如何生成相关MongoDB
或MsSQL
不同的模型?”
例如:我想生成People
模型相关MongoID
和Animal
模型MsSQL
。当我使用命令生成时:rails g model Animal name:string
它会生成与 mongoid 相关的模型。如何使用 ActiveRecord 生成与 MsSQL 相关的模型 Animal。
请帮我。谢谢