From 62f8c5e35949e41ecf777c36736bae1caa007179 Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Mon, 6 Nov 2017 17:43:33 -0500 Subject: Update the driver Detail page. Still need to fix the Identity Create function --- .../migrations/0002_auto_20171106_2233.py | 20 ++++++++++++++++++++ app/dispatchAuth/models.py | 2 ++ 2 files changed, 22 insertions(+) create mode 100644 app/dispatchAuth/migrations/0002_auto_20171106_2233.py (limited to 'app/dispatchAuth') diff --git a/app/dispatchAuth/migrations/0002_auto_20171106_2233.py b/app/dispatchAuth/migrations/0002_auto_20171106_2233.py new file mode 100644 index 0000000..fa2f934 --- /dev/null +++ b/app/dispatchAuth/migrations/0002_auto_20171106_2233.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.5 on 2017-11-06 22:33 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('dispatchAuth', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='user', + name='id', + field=models.AutoField(primary_key=True, serialize=False), + ), + ] diff --git a/app/dispatchAuth/models.py b/app/dispatchAuth/models.py index 6c90dd0..49e0a41 100644 --- a/app/dispatchAuth/models.py +++ b/app/dispatchAuth/models.py @@ -1,4 +1,5 @@ from django.contrib.auth.models import AbstractUser, AbstractBaseUser, PermissionsMixin, BaseUserManager +from django.core.urlresolvers import reverse from django.db import models # Create your models here. @@ -40,6 +41,7 @@ class UserManager(BaseUserManager): class User(PermissionsMixin, AbstractBaseUser): + id = models.AutoField(primary_key=True) email = models.EmailField(max_length=256, unique=True) first_name = models.CharField(max_length=256) last_name = models.CharField(max_length=256) -- cgit v1.2.3