Skip to content

Instantly share code, notes, and snippets.

@csarcom
Last active January 1, 2016 10:48
Show Gist options
  • Save csarcom/8133414 to your computer and use it in GitHub Desktop.
Save csarcom/8133414 to your computer and use it in GitHub Desktop.
class Account(models.Model):
pass
class Brand(Account):
name = models.CharField()
class Company(Brand):
parent = models.ForeignKey(Brand)
class Reseller(Company):
parent = models.ForeignKey(Account)
class Client(Reseller):
parent = models.ForeignKey(Account)
class User(AbstractBaseUser)
account = models.ForeignKey(Account)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment