this is my first time deploying a Django app to Heroku I followed the the Django Heroku documentation
the app is deployed successfully but when I open the app I got this error :
relation "products_category" does not exist
LINE 1: ...ory"."image", "products_category"."catogory" FROM "products_...
this is the changes I did to my settings.py after reading the documentation :
import django_heroku
django_heroku.settings(locals())
the database configuration is still running with sqlite3:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
so what do I need to change in my setting to deploy my apps properly ?