Skip to content

Instantly share code, notes, and snippets.

@tibbon
Created July 10, 2013 01:39
Show Gist options
  • Save tibbon/5962843 to your computer and use it in GitHub Desktop.
Save tibbon/5962843 to your computer and use it in GitHub Desktop.
Validating uniqueness at the DB/migration level
class AddUniquenessIndexToYears < ActiveRecord::Migration
def change
add_index :years, [:award_id, :book_id], :unique => true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment