Skip to content

Instantly share code, notes, and snippets.

@ricomoss
Created October 23, 2014 22:22
Show Gist options
  • Save ricomoss/3ac9145c03379e8e8fc0 to your computer and use it in GitHub Desktop.
Save ricomoss/3ac9145c03379e8e8fc0 to your computer and use it in GitHub Desktop.
class Tcpa(models.Model):
wording = models.CharField(max_length=1024)
class ExpressWrittenConsent(models.Model):
wording = models.CharField(max_lengh=1024)
class TcpaByClient(models.Model):
client = models.ForeignKey('relationships.Client')
tcpa_wording = models.ForiegnKey(Tcpa)
class EwcByClient(models.Model):
client = models.ForeignKey('relationships.Client')
ewc_wording = models.ForiegnKey(ExpressWrittenConsent)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment