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 run.

rails g migration

Any ideas how to specify AR as my default generator for migrations, models, etc?

Thanks!

link|improve this question

78% accept rate
2  
I think I answered this (cant really answer it for another 7 hours due to rep). rails g active_record:migration seems to get it – juwiley Jun 16 '11 at 13:41
feedback

2 Answers

up vote 5 down vote accepted

rails g active_record:migration

link|improve this answer
feedback

You can config to use ActiveRecord generators in your config/application.rb

config.generators do |g| 
  g.orm :active_record 
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.