6👍
✅
The problem is probably because You have no full path for your DB backend. You probably have:
'ENGINE': 'sqlite3',
instead of:
'ENGINE': 'django.db.backends.sqlite3',
1👍
You must call manage.py from the folder where settings.py is located: ../manage.py shell
(In case using sqlite3)
(And djando 1.4)
- [Django]-Django rest framework viewset permission based on method
- [Django]-How to add custom user fields of dj_rest_auth package
- [Django]-JSON decode error while sending post request during testing
- [Django]-How to get rid of "%20" code in URLs (django)
- [Django]-How to use jqGrid in django frame work
Source:stackexchange.com