X-Git-Url: https://git.mdrn.pl/prawokultury.git/blobdiff_plain/df056627e66bc0170290f7f57b7a8c59ac953458..71e8973b1dfead567e58ec8e3e7b80a64865ba5f:/questions/models.py?ds=sidebyside
diff --git a/questions/models.py b/questions/models.py
index 746ad84..f00afc1 100644
--- a/questions/models.py
+++ b/questions/models.py
@@ -52,7 +52,8 @@ class Question(models.Model):
edited_question = models.TextField(_('edited question'), db_index=True, 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.'))
+ help_text=_('Use Textile syntax.'))
+ answered_by = models.CharField(_('answered by'), max_length=127, null=True, blank=True)
answered = models.BooleanField(_('answered'), db_index=True, default=False,
help_text=_('Check to send the answer to user.'))
answered_at = models.DateTimeField(_('answered at'), null=True, blank=True, db_index=True)