Extra changeColumns in Doctrine generate-migrations-diff

后端 未结 1 1597
挽巷
挽巷 2020-12-19 20:19

I\'m generating migrations between different yaml schema files: i.e. running:

symfony doctrine:generate-migrations-diff

And the resulting migration file has

相关标签:
1条回答
  • 2020-12-19 20:46

    The generate-migrations-diff doesn't diff two different yaml files. It actually compares your models and your yaml file and then generates a migration based on the differences. If you start from a db that is in sync with your yaml and classes, your workflow to make schema changes should be:

    1. Change yaml file
    2. generate-migrations-diff to diff your current (changed) yaml with your (unchanged) models. This will generate a migrations file in your doctrine/migrations directory (or whatever migrations_path is set to in your doctrine config).
    3. migrate to run the migration created in step 2 and modify your database
    4. generate-models-yaml to generate new classes based on your yaml file. These go where you've specified your generated models go (models_path in your doctrine config).
    5. generate-sql to generate a SQL file. This will go where your doctrine sql_path config is set to.
    0 讨论(0)
提交回复
热议问题