error is 'You need to supply at least one validation'.
class Comment < ActiveRecord::Base attr_accessible :content, :title, :commenter, :email, :url
class Comment < ActiveRecord::Base
attr_accessible :content, :title, :commenter, :email, :url
belongs_to :post
validates :content, :presence => true, :length => 10..200 end
validates :content, :presence => true, :length => 10..200
end