diff options
| author | Mitch Riedstra <Mitch@riedstra.us> | 2017-10-09 15:04:39 -0400 |
|---|---|---|
| committer | Mitch Riedstra <Mitch@riedstra.us> | 2017-10-09 15:04:39 -0400 |
| commit | 0957977a439d0ca8f33cf6b3c7f2457b0bbf7cd6 (patch) | |
| tree | afcc1bb42d72e34cb64e9564d68be4576e33e24c /app/dispatch/admin.py | |
| parent | 9f0a825ba66a37428efb178e2c6753c1373e9774 (diff) | |
| download | dispatch-tracker-0957977a439d0ca8f33cf6b3c7f2457b0bbf7cd6.tar.gz dispatch-tracker-0957977a439d0ca8f33cf6b3c7f2457b0bbf7cd6.tar.xz | |
Delete all of the old migrations, remove redundant contact model and add a script for adding fake data
Diffstat (limited to 'app/dispatch/admin.py')
| -rw-r--r-- | app/dispatch/admin.py | 3 |
1 files changed, 1 insertions, 2 deletions
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) |
