I have a users table and there is an index on that table:
add_index "users", ["email"], name: "index_users_on_email", unique: true, using: :btree
The index type is btree and email
is a unique field.
Is it worth having this index or is it better to just remove it?