[Answer]-Django 'no such table' when syncdb

1👍

Reason of the error : We cannot subclass a model where we explicitly define a manager there, custom or non-custom. Simply by removing the objects line from BaseModelTalk and place it on each model where abstract = False will fix it.

Leave a comment