Validate presence of a model, not id

openid
Marcin Kulik 12 years ago
parent a344670d50
commit 49644ffc68

@ -1,8 +1,8 @@
class Comment < ActiveRecord::Base
validates :body, :presence => true
validates :asciicast_id, :presence => true
validates :user_id, :presence => true
validates :asciicast, :presence => true
validates :user, :presence => true
belongs_to :user
belongs_to :asciicast, :counter_cache => true

Loading…
Cancel
Save