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: tiag...@pop.com.br

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to