From 46b02769c062024bd65d9040035fa739e1ba59f8 Mon Sep 17 00:00:00 2001 From: Sanj Date: Tue, 13 Dec 2011 18:22:46 +0530 Subject: [PATCH] add fts fields for participants --- itf/festival/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/itf/festival/models.py b/itf/festival/models.py index 98b3070..27a8286 100755 --- a/itf/festival/models.py +++ b/itf/festival/models.py @@ -83,6 +83,7 @@ class Participant(ItfModel): meeting = models.ForeignKey('Meeting') meetings = models.ManyToManyField('Meeting', related_name='participants') + fts_fields = ['name', 'title', 'short_bio'] def __unicode__(self): return self.name