up vote 0 down vote favorite
share [g+] share [fb]

How to do that with ActiveRecord? My code:

p = Product.create
l = Label.create
p.labels.add << l

But I get l.parent == nil

  create_table "labels", :force => true do |t|
    t.integer  "product_id"
  end
link|improve this question

Could someone with mod powers please edit that to "ActiveRecord"? I realize that this question is a lost cause in its current state, but maybe it can be salvaged a bit? – jdl Nov 7 '09 at 20:27
Your will be done. – Ryan Bigg Nov 7 '09 at 23:51
feedback

2 Answers

up vote 3 down vote accepted

Some code from you would be appropriate, since what you're asking should be working automatically.

class Parent < ActiveRecord::Base
  has_many :children
end

class Child < ActiveRecord::Base
  belongs_to :parent
end

If your code doesn't resemble that, then please post a more specific question.

Edit: Does your Product model have any validations in it? They aren't going to pass your code above, and you aren't checking the return value from create, so you'll never know.

link|improve this answer
My code is exactly like that. It's Rails 2.3.4 – guangnan Nov 8 '09 at 6:08
See my edit above about validations. Posting your model code would help, if that isn't it. – jdl Nov 8 '09 at 13:55
Not sure why. I changed something and change them back. But everything now working. Thank you. – guangnan Nov 8 '09 at 16:05
feedback

You could use acts_as_tree for this: http://github.com/rails/acts_as_tree

link|improve this answer
Shouldn't that be done some lower-level? No matter it's a tree or a list, child.parent_id should be set when a parent include it? – guangnan Nov 8 '09 at 7:05
feedback

Your Answer

 
or
required, but never shown

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