[Answer]-Django Inline Admin : Error : <class 'ui.models.License'> has no ForeignKey to <class 'ui.models.Car'>

1👍

syncdb does not detect changes (read the section Syncdb will not alter existing tables) .

You either need to
– Drop the database and recreate (not very recommended) or
– Install a 3rd party app called django-south to modify the database colums and manage the migrations

Leave a comment