Add compose unique index in Rails migration
Configure migration
Add the following to your migration:
For example, suppose you have a users
and authors
table, and you don’t want duplicate author entries with the same name
and user_id
. You can ensure this sort of uniqueness with the following:
Add Active Record validation
In addition to adding a database-level index, you’ll want to use ActiveRecord validations to handle duplicate entries more gracefully. So, if we had an Author
model that must have a unique combination of name
and user_id
, we’d add a validation like the following:
Now, whenever a single user attempts to create an author with a duplicate name
, we will get an ActiveRecord validation error instead of a database error like this:
Test Active Record validation
Install Shoulda Matchers and add the following tests to your model spec:
Make sure you define a subject
in the block where you add the validate_uniqueness_of
validation. Refer to the Shoulda Matchers docs for why you need a subject
.
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment