What is the best way to migrate data in django

前端 未结 6 1271
渐次进展
渐次进展 2021-01-30 11:27

After making some changes in my models (eg. new field in a model and a new model) what is the best way of reflecting these changes to my populated database?


PS: I

6条回答
  •  孤城傲影
    2021-01-30 12:00

    Django now has its own built-in migrations, documented at:

    https://docs.djangoproject.com/en/dev/topics/migrations/

提交回复
热议问题