Skip to content
Snippets Groups Projects
Verified Commit 40613000 authored by Tom Teichler's avatar Tom Teichler :beers: Committed by Nik | Klampfradler
Browse files

Add missing on_delete for checkpoint

parent 9fd23a7a
No related branches found
No related tags found
1 merge request!30Resolve "Checkpoint system"
...@@ -415,5 +415,5 @@ class Checkpoint(ExtensibleModel): ...@@ -415,5 +415,5 @@ class Checkpoint(ExtensibleModel):
comment = models.CharField(max_length=60, verbose_name=_("Comment")) comment = models.CharField(max_length=60, verbose_name=_("Comment"))
timestamp = models.DateTimeField(verbose_name=_("Date and time of check"), auto_now_add=True) timestamp = models.DateTimeField(verbose_name=_("Date and time of check"), auto_now_add=True)
lat = models.DecimalField(max_digits=10, decimal_places=8, verbose_name=_("Latitude of check"), blank=True, null=True) lat = models.DecimalField(max_digits=10, decimal_places=8, verbose_name=_("Latitude of check"), blank=True, null=True, on_delete=models.CASCADE)
lon = models.DecimalField(max_digits=11, decimal_places=8, verbose_name=_("Longitude of check"), blank=True, null=True) lon = models.DecimalField(max_digits=11, decimal_places=8, verbose_name=_("Longitude of check"), blank=True, null=True, on_delete=models.CASCADE)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment