Skip to content

rgraff/validates_existence

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ValidatesExistence

This plugin adds a new validates_existence_of method to ActiveRecord::Base.

The validates_existence_of validator checks that a foreign key in a belongs_to association points to an existing record. If :allow_nil => true, then the key itself may be nil. A non-nil key requires that the foreign object must exist. Works with polymorphic belongs_to.

The default error message is "does not exist".

Example

class Person < ActiveRecord::Base
  belongs_to :address
  validates_existence_of :address
end

Note that this validation performs a query to see if the record in question exists.

Copyright (c) 2007-2008 Josh Susser. Released under the MIT license.

About

Rails plugin that provides a validates_existence_of method for ActiveRecord models to check existence of records referenced by belongs_to associations..

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 100.0%