Django - syncdb doesn't create tables

后端 未结 2 1991
夕颜
夕颜 2020-12-19 03:45

I added a many-to-many field to an existing model and was expecting syncdb to create a new table, but there\'s nothing there. This is what the model looks like:

相关标签:
2条回答
  • 2020-12-19 04:23

    I found this explanation at the django docs useful: SchemaEvolution.

    The de facto standard for database migration is Django South.

    Its not perfect, but, it works pretty well. You should always check(and edit if necessary) your migration file before running it, to make sure that it actually does what it supposed to do. You can check out their tutorial here.

    Also, if you run:

    python manage.py inspectdb > somefile.txt
    

    You can get quickly check out if your database structure is matching your django models.

    0 讨论(0)
  • 2020-12-19 04:32

    The syncdb command does not create many to many tables for existing models by design. This decision is explained on ticket 2229.

    That leaves you with a few options.

    • If you don't have any data in your Book model, drop the table and rerun syncdb. Django will recreate the book table and the many to many table.
    • Use the dbshell command, and create the many to many joining table using the output of sql myapp.
    • If you're doing multiple schema migrations with Django, make friends with South.
    0 讨论(0)
提交回复
热议问题