Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. config.authentication_keys=[:email, :organization_id]
  2.  
  3. validates_uniqueness_of :email, scope: :organization_id
  4.  
  5. def up
  6. remove_index :users, name: 'index_users_on_email'
  7. add_index :users, :email, unique: true
  8. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement