JourneyJoker/clients/models.py

11 lines
249 B
Python
Raw Normal View History

2021-03-01 09:56:10 +00:00
from django.db import models
from django.contrib.auth import get_user_model
class Profile(models.Model):
user = models.ForeignKey(get_user_model(), models.CASCADE)
class ClientProfile(Profile):
pass
class PartnerProfile(Profile):
pass