summaryrefslogtreecommitdiff
path: root/app/daily/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/daily/models.py')
-rw-r--r--app/daily/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/daily/models.py b/app/daily/models.py
index be5b7fd..a0a6d5b 100644
--- a/app/daily/models.py
+++ b/app/daily/models.py
@@ -65,10 +65,10 @@ class Weather(models.Model):
class Daily(models.Model):
+ user = models.ForeignKey(settings.AUTH_USER_MODEL)
location = models.ForeignKey(Location, blank=True, null=True)
weather = models.ForeignKey(Weather, blank=True, null=True)
weather_human = models.TextField(blank=True, null=True)
- title = models.CharField(max_length=200, blank=True, null=True)
body_html = models.TextField(blank=True, null=True)
body_markdown = models.TextField(blank=True, null=True)
date = models.DateField()