tacticalrmm/api/djangormm/accounts/models.py

6 lines
158 B
Python
Raw Normal View History

2019-10-22 22:22:36 +00:00
from django.db import models
from django.contrib.auth.models import AbstractUser
class User(AbstractUser):
is_active = models.BooleanField(default=True)