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…


Tiago Zortéa de Conto
Mac User - MAC OS X Leopard
MSN: [email protected]

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:

On Tue, Apr 7, 2009 at 10:03 PM, Tiago Z.C [email protected] wrote:

has_many :comments


Tiago Zortéa de Conto
Mac User - MAC OS X Leopard
MSN: [email protected]


Tiago Zortéa de Conto
Mac User - MAC OS X Leopard
MSN: [email protected]