Last active
February 26, 2020 18:33
-
-
Save banagale/d154189a4f83d18d58805ccff74d5969 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Profile(TimeStampedModel): | |
user = models.OneToOneField(User, null=True, blank=True, related_name='profile', on_delete=models.CASCADE) | |
organization = models.ForeignKey('home.Organization', null=True, blank=True, on_delete=models.CASCADE) | |
personal_data = models.OneToOneField('PersonalData', null=True, blank=True, on_delete=models.CASCADE) | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment