no such table - mavenium/PyEditorial GitHub Wiki
Problem :
If you encounter errors such as the following when running the program :
django.db.utils.OperationalError: no such table: content_blog
Solution :
Just run the following commands again to create the required tables :
python manage.py makemigrations # Create migrations files
python manage.py migrate # Create database tables
python manage.py migrate --run-syncdb