diff options
author | luxagraf <sng@luxagraf.net> | 2023-07-14 15:23:26 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-07-14 15:23:26 -0500 |
commit | 95a17d5e053eef07931ee3891c56215ba80fd557 (patch) | |
tree | 9ae68b4da8efe9807c0160d2b43d2884f027a32b /app/posts/models.py | |
parent | 76e45c5290c762b2ed20fd002580c9c2cc95150e (diff) |
posts: added user and migrations
Diffstat (limited to 'app/posts/models.py')
-rw-r--r-- | app/posts/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/posts/models.py b/app/posts/models.py index 9f79c66..1f909f7 100644 --- a/app/posts/models.py +++ b/app/posts/models.py @@ -1,6 +1,7 @@ from django.db import models from django.utils.html import format_html, format_html_join from django.utils import timezone +from django.contrib.auth.models import User from products.models import ProductLink |