We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b602d9a commit 03470f6Copy full SHA for 03470f6
timeline_logger/models.py
@@ -29,7 +29,9 @@ class TimelineLog(models.Model):
29
null=True,
30
db_index=True,
31
)
32
- content_object = GenericForeignKey("content_type", "object_id")
+ content_object = GenericForeignKey(
33
+ "content_type", "object_id", for_concrete_model=False
34
+ )
35
timestamp = models.DateTimeField(
36
verbose_name=_("timestamp"),
37
auto_now_add=True,
0 commit comments