I cannot create users and blogs in my django application.It simply shows an error(\"Table \'MyDjango.django_admin_log\' doesn\'t exist\") while press save button.The error messa
Have you recently enabled admin history, but forgot to run syncdb? From what I see, Django had no problem locating your model tables, but when you tried to modify them through the admin interface it couldn't find the right table to store your actions.