Lina Hammami
Lina Hammami

Reputation: 393

php bin/console doctrine:migrations:diff won't work

This is what appears in console when i try to generate migration after creating entities enter image description here There is no migrations here :/

Upvotes: 1

Views: 1714

Answers (1)

Alessandro Minoccheri
Alessandro Minoccheri

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

Documentation

Upvotes: 4

Related Questions