vote up 0 vote down star

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
flag

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 at 20:27
Your will be done. – Ryan Bigg Nov 7 at 23:51

2 Answers

vote up 3 vote down check

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|flag
My code is exactly like that. It's Rails 2.3.4 – Cheng Nov 8 at 6:08
See my edit above about validations. Posting your model code would help, if that isn't it. – jdl Nov 8 at 13:55
Not sure why. I changed something and change them back. But everything now working. Thank you. – Cheng Nov 8 at 16:05
vote up 3 vote down

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

link|flag
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? – Cheng Nov 8 at 7:05

Your Answer

Get an OpenID
or

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