I'm discovering Symfony and Doctrine. I was able to generate a file containing a class for my migration using
php bin/console doctrine:migrations:diff
It's great but the name of my file (and my class) is : Version20160714233422.
It's not really understable (even though it's the date) and I would like to call it Version1 for example.
I guess it would be possible to change manually the names but is there a way to do it automatically ?
I looked on the help :
php bin/console doctrine:migrations:diff --help
but this feature doesn't seems to be implemented. Am I wrong ?
Is there a reason it's not possible ? Does setting a code like 0.1, 0.2... is a bad idea ?
If someone could explain this to me it would be very much appreciated !