Project

General

Profile

Statistics
| Branch: | Revision:

root / crm / robocrm / models.py @ cd771306

History | View | Annotate | Download (188 Bytes)

1
from django.db import models
2

    
3
# User Model
4
class RoboUser(AbstractBaseUser):
5
  andrewID = models.CharField(max_length=8, unique=True, db_index=True)
6
  
7

    
8

    
9

    
10
  USERNAME_FIELD = 'andrewID'
11