django syncdb and an updated model

后端 未结 7 1311
暗喜
暗喜 2020-12-22 18:43

I have recently updated my model, added a BooleanField to it however when I do python manage.py syncdb, it doesn\'t add the new field to the database for the mo

相关标签:
7条回答
  • 2020-12-22 19:07

    Havent used django in a while, but i seem to remember that syncdb does perform alter commands on db tables. you have to drop the table then run again and it will create again.

    edit: sorry does NOT perform alter.

    0 讨论(0)
  • 2020-12-22 19:08

    Follow these steps:

    1. Export your data to a fixture using the dumpdata management command
    2. Drop the table
    3. Run syncdb
    4. Reload your data from the fixture using the loaddata management command
    0 讨论(0)
  • 2020-12-22 19:20

    From Django 1.7 onwards

    Django has built in support for migrations - take a look at the documentation.

    For Django 1.6 and earlier

    Django doesn't support migrations out of the box. There is a pluggable app for Django that does exactly that though, and it works great. It's called South.

    0 讨论(0)
  • 2020-12-22 19:20

    Django currently does not do this automatically. Your options are:

    1. Drop the table from the database, then recreate it in new form using syncdb.
    2. Print out SQL for the database using python manage.py sql (appname), find the added line for the field and add it manually using alter table SQL command. (This will also allow you to choose values of the field for your current records.)
    3. Use South (per Dominic's answer).
    0 讨论(0)
  • 2020-12-22 19:20

    In django 1.6

    • At first we have run - python manage.py sql <app name>

    • Then we have to run - python manage.py syncdb

    0 讨论(0)
  • 2020-12-22 19:27

    If you run Django with Apache and MySQL, restart apache after making migration with makemigrations.

    0 讨论(0)
提交回复
热议问题