[Answered ]-Made a new model in Django. But it's not showing up in the database

1👍

syncdb will only create tables for models found in <app>.models. Import the model class there if necessary.

1👍

did your new model was on a new apps ? in this case, don’t forget to add the new apps in INSTALLED_APPS settings…

in fact, django is absolutely not mysterious or magic.

Leave a comment