Reputation: 393
This is what appears in console when i try to generate migration after creating entities
There is no migrations here :/
Upvotes: 1
Views: 1714
Reputation: 35973
You need to install first this bundle:
composer require doctrine/doctrine-migrations-bundle "^1.0"
after you need to add the Bundle into AppKernel, launch composer dump-autoload
to be sure and after you can use the command
Upvotes: 4