diff options
author | luxagraf <sng@luxagraf.net> | 2017-12-14 19:58:07 -0800 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2017-12-14 19:58:07 -0800 |
commit | c903be495237125906e95e2d5fcb9f17df09327c (patch) | |
tree | 27173dad151e2c09105bd1c1b64f9d04210f8d8e /app/unused_apps/daily/models.py | |
parent | 83b7318a4672d32ed77cd3f906f43f5ad1cce854 (diff) |
cleaned up notes, archived old apps, moved checkins to locations app
where it should have been from the beginning
Diffstat (limited to 'app/unused_apps/daily/models.py')
-rw-r--r-- | app/unused_apps/daily/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/unused_apps/daily/models.py b/app/unused_apps/daily/models.py index 1bf7bfd..bd5f018 100644 --- a/app/unused_apps/daily/models.py +++ b/app/unused_apps/daily/models.py @@ -10,7 +10,7 @@ from utils.widgets import markdown_to_html class CheckIn(models.Model): point = models.PointField(blank=True) - location = models.ForeignKey(Location, blank=True, null=True) + location = models.ForeignKey(Location, blank=True, null=True, related_name='adsjf') date = models.DateField(default=timezone.now) class Meta: |