fixed regression introduced

This commit is contained in:
Sam
2021-02-02 11:46:43 +00:00
parent ec584b7aab
commit c8d433c3f9
20 changed files with 377 additions and 237 deletions

View File

@@ -6,9 +6,6 @@ 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)