I have used two different databases for my Rails application: MongoDB
and MsSQL
using Mongoid
and activerecord-sqlserver-adapter
adapter respectively. Everything is well but there is a problem while generate Model.
The problem is "how can I generate the model that relates to MongoDB
or MsSQL
differently?"
For example: I want to generate People
model relates to MongoID
and Animal
model with MsSQL
. While I generate with command: rails g model Animal name:string
it generates the model related to mongoid. How can I generate the model Animal with ActiveRecord that means related to MsSQL.
Please help me.
Thanks