I\'m using MongoDB via Mongoid integration, as well as ActiveRecord in a project. I would like to generate migrations for active record, and Mongoid is the default when I r
rails g active_record:migration
You can config to use ActiveRecord generators in your config/application.rb
config.generators do |g| g.orm :active_record end