From: Radek Czajka <rczajka@rczajka.pl>
Date: Wed, 31 Jan 2024 07:56:24 +0000 (+0100)
Subject: fix
X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/02f8116c468682e76e7d7d81ab345c92d8188152

fix
---

diff --git a/src/documents/models/project.py b/src/documents/models/project.py
index ed066f18..7e9cf306 100644
--- a/src/documents/models/project.py
+++ b/src/documents/models/project.py
@@ -12,6 +12,7 @@ class Project(models.Model):
     notes = models.TextField(_('notes'), blank=True, null=True)
     logo = models.FileField(upload_to='projects', blank=True)
     logo_mono = models.FileField(upload_to='logo_mono', help_text='white on transparent', blank=True)
+    logo_alt = models.CharField(max_length=255, blank=True)
 
     class Meta:
         app_label = 'documents'