Add: filetype field to the PostFile model

This commit is contained in:
Aroy-Art 2025-02-26 14:07:25 +01:00
parent 4d4c1c7e11
commit a1f1fac5a6
Signed by: Aroy
GPG key ID: 583642324A1D2070

View file

@ -45,6 +45,7 @@ class PostFileModel(models.Model):
width = models.IntegerField(null=True)
mimetype = models.CharField(max_length=256, blank=True)
file_type = models.CharField(max_length=16, blank=True)
extension = models.CharField(max_length=64, blank=True)