Skip to content

Tag: django

Setting up MongoDB + Django

I am new to Mongo DB and Django. I’ve been trying to use Mongo DB as my primary Database for Django. I’ve installed MongoDB and Django-nonrel as per the following link: Django – MongoDB setup The version of django-nonrel, i am using is 1.7. Clone link to it: pip install git+https://github.co…

Django error: relation “users_user” does not exist

I’m getting the following error during migration: django.db.utils.ProgrammingError: relation “users_user” does not exist This is my model: Settings: Anything I have missed? Answer Inside your user app, you should have a folder migrations. It should only contain 0001_initial.py and __init__.p…