Association and validation

Hi

I’m having some issues with models that i don’t know which is the best way of doing that.

I have Post model…

class Post < ActiveRecord::Base

validates_presence_of :name, :title

has_many :comments

end

and the Comment model.

class Comment < ActiveRecord::Base

validates_presence_of(:post)

belongs_to :post

end

If I open the console, and start write some lines:

c = Comment.new

p = post.new

c.post = p

c.save

I receive the true feedback but, what about the presence of name and title on post???

Thank you…

i’m sorry, forget my question, i found the awnser.

class Comment < ActiveRecord::Base

validates_presence_of(:post)

belongs_to :post, :validate => true

end

:slight_smile: