X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/869c47be048551698e91609eb16f445bbf193c2e..b5f9818944a3115d032b928ae3751e793eab331f:/apps/funding/models.py?ds=sidebyside

diff --git a/apps/funding/models.py b/apps/funding/models.py
index e234a95ef..8c3312ee8 100644
--- a/apps/funding/models.py
+++ b/apps/funding/models.py
@@ -114,7 +114,7 @@ class Perk(models.Model):
     offer = models.ForeignKey(Offer, verbose_name=_('offer'), null=True, blank=True)
     price = models.DecimalField(_('price'), decimal_places=2, max_digits=10)
     name = models.CharField(_('name'), max_length=255)
-    description = models.TextField(_('description'), blank=True)
+    long_name = models.CharField(_('long name'), max_length=255)
     end_date = models.DateField(_('end date'), null=True, blank=True)
 
     class Meta: