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

I have a model User. Now i need all the associations details of the same from console. And need to know whether it is a one-one or one-many.Is there any method to do that?

share|improve this question

3 Answers

up vote 5 down vote accepted
User.reflect_on_all_associations

This will return an array of associations similar to this:

#<ActiveRecord::Reflection::AssociationReflection:0x00000105575548 @macro=:has_many, @name=:posts, @options={}, @active_record=User(id: integer, login: string), @collection=false>

Sample code:

reflections = User.reflect_on_all_associations
reflections.each do |reflection|
  puts ":#{reflection.macro} => :#{reflection.name}"
end
share|improve this answer
Thanks.This is worked for me. :D :D – shajin May 4 '11 at 14:21

But, how do you create the records through console?

For example in my case, for the class User:

:has_many => :calls_data
:has_many => :location_data
:has_many => :sms_data

Now I create a user, but I'd like at the same time to create its data for the calls_data table, how do I do it?

data = User.CallsData.new(...) doesn't work..

Thanks a lot!

share|improve this answer
1  
You can't use User.CallsData.The associations are for the instance of the model.So you can do like this. user = User.last data = user.calls_date.new(..) – shajin Sep 1 '11 at 21:01

Because I'm a new user, I am unable to clarify/reply to other's posts. I'll note that you need to reload the rails console before checking any changes in associations.

share|improve this answer

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.