A long-lived project that still receives updates
Adds the validates_uniqueness_without_deleted validator to ignore deleted fields when validating for uniqueness.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 6.1, < 7.2
 Project Readme

ParanoiaUniquenessValidator

Adds validates_uniqueness_without_deleted.

This validator will ignore any record that has a non-null value for the deleted_at field. This gem was made specifically for use with the Paranoia gem but it can be used with any gem that uses the deleted_at field for marking records as deleted.

Gem Version ci Coverage Status Code Climate

Installation

Add this line to your application's Gemfile:

# Rails 6.1
gem 'paranoia_uniqueness_validator', '3.3.0'

# Rails 7
gem 'paranoia_uniqueness_validator', '3.4.0'

# Rails 7.1
gem 'paranoia_uniqueness_validator', '3.5.0'

And then execute:

$ bundle

Or install it yourself as:

$ gem install paranoia_uniqueness_validator

Configuration

This validator supports all configuration options used by the base ActiveRecord uniqueness validator. For more information check out the Rails API documentation.

Usage

class SomeModel < ActiveRecord::Base
  validates :some_field, uniqueness_without_deleted: true
end

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request