I have created a new Skipper project from existing symfony2/doctrine2 entities.
I have then exported back to the Symfony2 project.
I then ran 'php app/console doctrine:migrations:dif' to generate doctrine migrations.
It has recreated all indexes applying a suffix to the name, eg
$this->addSql('ALTER TABLE Basket DROP INDEX UNIQ25EA554DA76ED395, ADD INDEX IDX25EA554DA76ED395 (user_id)');
I don't want this as I need to update a live database and this could cause problems. How do I prevent these name changes please?
Thanks