I am very new to django and was able to finish the tutorial on djangoproject.com without any errors. I am now going through the Django REST framework tutorial found at http:
The most direct way of solving this type of problem is just the following 3 steps process:
Delete all the migration related files from app's migrations folder/directory (these basically starts with 0001, 0002, 0003 etc).
Delete/Rename the existing database file named db.sqlite3 from App directory.
Now run the following command:
python manage.py migrate
Finally execute
python manage.py createsuperuser
to perform the administrative tasks (If you want).