Adding fields to an already existing database for Django (version < 1.7)

后端 未结 3 588
执笔经年
执笔经年 2021-01-04 11:35

I\'m using Django ( < v1.7), with SQLite3 as the database engine.

I am trying to add a new field to an already existing model\'s class. This class already has dat

3条回答
  •  甜味超标
    2021-01-04 12:15

    There are other options of migration apps (although South is the most used).

    I have used django-evolution for my projects and it was very easy to install and start using.

    South seems to be more complete, but for simpler tasks, django-evolution may be suitable.

提交回复
热议问题