[Answer]-Relation error on adding new model class

1👍

Error
relation "certificates_genericcertificate" does not exist
means that “certificates_genericcertificate” relation do not exists in your database.
Please do

python manage.py syncdb

and if you are using South you can use

python manage.py migrate

try to hit these commands and if it does not help you, drop your tables/database and recreate tables/database by using syncdb.

Leave a comment