[Answered ]-Django database error on one to many relationship

1👍

You forgot to actually modify/create the tables in database (manually, with South or manage.py syncdb).

1👍

You can’t modify the table with syncdb . you need to use South Migrations

Its really very good and you can even revert back to previous migration in case of some problem

👤Mirage

Leave a comment