It depends on ORM framework you're using but in general indexes serve to index data in your database. If you define index for any field, you can perform faster data look-up on this field.
For example for Doctrine2 indexes, take a look at following Doctrine2 documentation page, for Doctrine1 check this page.