Skip to content

no such table

Mehdi Namaki edited this page Aug 25, 2020 · 4 revisions

Problem :

If you encounter errors such as the following when running the program :

django.db.utils.OperationalError: no such table: Web_quote

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

Clone this wiki locally