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 message as shown below.

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.