added Company model, switched backend config to postgis

This commit is contained in:
Sam
2021-01-21 11:37:54 +00:00
parent 21e05fd14d
commit 77e279423e
4 changed files with 46 additions and 3 deletions

View File

@@ -15,7 +15,10 @@ Including another URLconf
"""
from django.contrib import admin
from django.urls import path
from django.conf.urls.static import static
from django.conf import settings
urlpatterns = [
path('admin/', admin.site.urls),
]
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)