django-orm-standalone
django-orm-standalone copied to clipboard
A standalone package using django-orm for database manipulation
Results
2
django-orm-standalone issues
Sort by
recently updated
recently updated
newest added
If you delete migrations inside the data directory, `python manage.py makemigrations` won't recreate them. You have to specify `python manage.py makemigrations data` In more complicated setups with multiple interdependent apps,...
I had to add ```from django.conf.urls import url from django.conf.urls import url urlpatterns = [ url(r'^$', lambda x: x) ] ROOT_URLCONF = 'settings' ``` to my settings file to get...