Difference between Symfony/Doctrine commands “make:migration” and “doctrine:migrations:diff”

前端 未结 2 1090
长发绾君心
长发绾君心 2021-01-19 02:25

Is there a differences between the Symfony console command make:migration and doctrine:migrations:diff?

2条回答
  •  梦谈多话
    2021-01-19 03:14

    There is no difference between these two commands.

    make:migration is simply a Symfony provided wrapper for the Doctrine command.

    You can run either to the exact same effect. But the symfony one requires that you have the Symfony Maker bundle, which otherwise it not required.

提交回复
热议问题