commit/galaxy-central: martenson: fix error in TS search schema
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/e0b649785f0a/ Changeset: e0b649785f0a User: martenson Date: 2015-01-28 20:25:42+00:00 Summary: fix error in TS search schema Affected #: 1 file diff -r bbebacb3a4e57063ad911d980c67182b6fe44522 -r e0b649785f0a92c1030c42ea826d367ee7d5dc3c lib/galaxy/webapps/tool_shed/search/repo_search.py --- a/lib/galaxy/webapps/tool_shed/search/repo_search.py +++ b/lib/galaxy/webapps/tool_shed/search/repo_search.py @@ -21,14 +21,16 @@ schema = Schema( id = STORED, - name = TEXT( field_boost = 1.7 ), - description = TEXT( field_boost = 1.5 ), - long_description = TEXT, - homepage_url = TEXT, - remote_repository_url = TEXT, - repo_owner_username = TEXT, + name = TEXT( field_boost = 1.7, stored = True ), + description = TEXT( field_boost = 1.5, stored = True ), + long_description = TEXT( stored = True ), + homepage_url = TEXT( stored = True ), + remote_repository_url = TEXT( stored = True ), + repo_owner_username = TEXT( stored = True ), times_downloaded = STORED, - approved = STORED ) + approved = STORED, + last_updated = STORED, + full_last_updated = STORED ) except ImportError, e: search_ready = False Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org