Django: update database schema without losing data

后端 未结 3 447
别那么骄傲
别那么骄傲 2020-12-30 14:20

What is the best solution if I want to upgrade (alter) my database schema (add new fields to tables by adding them just to Django models) without losing data in these tables

3条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-30 14:42

    Learning curve...

    http://south.aeracode.org/

    South was merged into django core at version 1.7.
    There is now a native django feature for data migration on schema changes.

提交回复
热议问题