From 0957977a439d0ca8f33cf6b3c7f2457b0bbf7cd6 Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Mon, 9 Oct 2017 15:04:39 -0400 Subject: Delete all of the old migrations, remove redundant contact model and add a script for adding fake data --- app/dispatch/admin.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'app/dispatch/admin.py') diff --git a/app/dispatch/admin.py b/app/dispatch/admin.py index e6617f2..b512e70 100644 --- a/app/dispatch/admin.py +++ b/app/dispatch/admin.py @@ -1,8 +1,7 @@ from django.contrib import admin # Register your models here. -from .models import Load, Contact, Company +from .models import Load, Company admin.site.register(Load) -admin.site.register(Contact) admin.site.register(Company) -- cgit v1.2.3