I have a model with:
has_and_belongs_to_many :users
How do I validate that the model has at least one user in the model? I tried:
validates_presence_of :users
But that doesn't seem to give me what I want...
I would write custom validation:
validate :has_users?
def has_users?
# rails 2:
errors.add_to_base "Model must have some users." if self.users.blank?
end
That would do exactly that.
Note in rails 3+ you have to use:
# rails 3+
errors.add :base, "Model must have some users." if self.users.blank?
In rails 4+ there's a built-in shortcut, so you can simply do:
validates :users, presence: true
In rails 4 you can just do
validates :users, presence: true
In Rails 3.2.x:
validate :has_users?
def has_users?
errors.add(:base, 'Error message') if self.users.blank?
end
Josh Susser wrote a plugin that adds a validates_existence_of
method that does what you want. It ensures that a foreign key references a record that exists.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With