I have a rails model that validates uniqueness of 2 form values. If these 2 values aren\'t unique the validation errors are shows and the \"submit\" button is changed to \"
Try this:
Rails 2: Model.save(false) Rails 3: Model.save(:validate => false)
Model.save(false)
Model.save(:validate => false)
It bypasses validations (all of them though).