You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -2960,9 +2961,15 @@ class AdvisoryV2(models.Model):
2960
2961
)
2961
2962
2962
2963
date_published=models.DateTimeField(
2963
-
blank=True, null=True, help_text="UTC Date of publication of the advisory"
2964
+
blank=True,
2965
+
null=True,
2966
+
help_text="UTC Date of publication of the advisory",
2967
+
)
2968
+
date_collected=models.DateTimeField(
2969
+
auto_now_add=True,
2970
+
db_index=True,
2971
+
help_text="UTC Date on which the advisory was collected",
2964
2972
)
2965
-
date_collected=models.DateTimeField(help_text="UTC Date on which the advisory was collected")
2966
2973
2967
2974
original_advisory_text=models.TextField(
2968
2975
blank=True,
@@ -2997,6 +3004,12 @@ class AdvisoryV2(models.Model):
2997
3004
help_text="Precedence indicates the priority of advisory from different datasources. It is determined based on the reliability of the datasource and how close it is to the source.",
0 commit comments