readme update

This commit is contained in:
Sam
2021-01-26 12:50:29 +00:00
parent 9c88019700
commit b385767232
2 changed files with 20 additions and 0 deletions

View File

@@ -6,6 +6,9 @@ User = get_user_model()
# Create your models here.
class StatsLog(models.Model):
"""
Keep track of interactions between user and product links
"""
model = models.ForeignKey(ContentType, on_delete=models.DO_NOTHING, null=True)
user = models.ForeignKey(User, on_delete=models.DO_NOTHING, null=True)