diff options
Diffstat (limited to 'spoken_auth/models.py')
-rw-r--r-- | spoken_auth/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spoken_auth/models.py b/spoken_auth/models.py index 431330d..c2fbb6b 100644 --- a/spoken_auth/models.py +++ b/spoken_auth/models.py @@ -9,6 +9,7 @@ class Users(AbstractBaseUser): id = models.IntegerField(primary_key=True) username = models.CharField(max_length=100L, unique=True) email = models.CharField(max_length=100L, unique=True) + is_active = models.BooleanField() USERNAME_FIELD = 'username' class Meta: db_table = 'auth_user' |