From a588221524cd0427768c750b58c3d992eb236c42 Mon Sep 17 00:00:00 2001 From: Sam Wenham Date: Sun, 31 Mar 2019 16:43:21 +0100 Subject: [PATCH] Ooops shouldn't of commited the DateTime change, yet... --- core/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/models.py b/core/models.py index 3d9041c..d978eaa 100644 --- a/core/models.py +++ b/core/models.py @@ -251,7 +251,7 @@ class LogbookEntry(TroggleModel): ("html", "Html style logbook") ) - date = models.DateTimeField()#MJG wants to turn this into a datetime such that multiple Logbook entries on the same day can be ordered.ld() + date = models.DateField()#MJG wants to turn this into a datetime such that multiple Logbook entries on the same day can be ordered.ld() expeditionday = models.ForeignKey("ExpeditionDay", null=True)#MJG wants to KILL THIS (redundant information) expedition = models.ForeignKey(Expedition,blank=True,null=True) # yes this is double- title = models.CharField(max_length=settings.MAX_LOGBOOK_ENTRY_TITLE_LENGTH)