Commit e32b47e800c327be88f4866b7c95a335eef14009
1 parent
6f406e45
Exists in
master
and in
31 other branches
Fixed search.
Showing
1 changed file
with
0 additions
and
1 deletions
Show diff stats
colab/accounts/search_indexes.py
... | ... | @@ -22,7 +22,6 @@ class UserIndex(indexes.SearchIndex, indexes.Indexable): |
22 | 22 | google_talk = indexes.CharField(model_attr='google_talk', null=True, |
23 | 23 | stored=False) |
24 | 24 | webpage = indexes.CharField(model_attr='webpage', null=True, stored=False) |
25 | - message_count = indexes.IntegerField(stored=False) | |
26 | 25 | |
27 | 26 | def get_model(self): |
28 | 27 | return User | ... | ... |