diff --git a/backend/apps/files/models.py b/backend/apps/files/models.py index 97e4b45..5d05e95 100644 --- a/backend/apps/files/models.py +++ b/backend/apps/files/models.py @@ -40,8 +40,8 @@ class PostFileModel(models.Model): # Image Blur Hash for preview presentation blur_hash = models.CharField(max_length=32) - # If file has width and hight save it. - hight = models.IntegerField(null=True) + # If file has width and height save it. + height = models.IntegerField(null=True) width = models.IntegerField(null=True) mimetype = models.CharField(max_length=256, blank=True)