Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question
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

2 Answers

up vote 27 down vote accepted
rails g active_record:migration 
share|improve this answer

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

config.generators do |g| 
  g.orm :active_record 
end
share|improve this answer
1  
Great tip! Complementing it, after this config, to invoke a mongoid generator, say for a model 'whatever', one would use: rails g mongoid:model whatever – Thiago Ganzarolli Aug 21 '12 at 21:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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