X-Git-Url: https://git.mdrn.pl/prawokultury.git/blobdiff_plain/7ae251c4e5d11be3f6d7999a0d72413c724d0a98..71b0bebea369ab07e2d1a64a2376aba1f98c5a6f:/questions/models.py diff --git a/questions/models.py b/questions/models.py index f00afc1..278071e 100644 --- a/questions/models.py +++ b/questions/models.py @@ -45,11 +45,11 @@ class TagItem(GenericTaggedItemBase): class Question(models.Model): email = models.EmailField(_('contact e-mail'), null=True, blank=True) - question = models.TextField(_('question'), db_index=True) + question = models.TextField(_('question'), db_index=False) created_at = models.DateTimeField(_('created at'), auto_now_add=True) changed_at = models.DateTimeField(_('changed at'), auto_now=True) approved = models.BooleanField(_('approved'), default=False) - edited_question = models.TextField(_('edited question'), db_index=True, null=True, blank=True, + edited_question = models.TextField(_('edited question'), db_index=False, null=True, blank=True, help_text=_("Leave empty if question doesn't need editing.")) answer = MarkupField(_('answer'), markup_type='textile_pl', blank=True, help_text=_('Use Textile syntax.'))