summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-10-19 16:43:35 -0300
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-10-19 16:43:35 -0300
commit6575dda739ebbd441afe410552e3fcb0165ef156 (patch)
treec63107cc9e5a85fcb09de4148a933f4717ad4b5e
parent88bf1be26b6f2d6f806f98ae6283f957917e559e (diff)
downloadaskbot-6575dda739ebbd441afe410552e3fcb0165ef156.tar.gz
askbot-6575dda739ebbd441afe410552e3fcb0165ef156.tar.bz2
askbot-6575dda739ebbd441afe410552e3fcb0165ef156.zip
added user profile search setup to the init_postgresql_full_text_search command
-rw-r--r--askbot/management/commands/init_postgresql_full_text_search.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/askbot/management/commands/init_postgresql_full_text_search.py b/askbot/management/commands/init_postgresql_full_text_search.py
index cd709be0..3cf4b03c 100644
--- a/askbot/management/commands/init_postgresql_full_text_search.py
+++ b/askbot/management/commands/init_postgresql_full_text_search.py
@@ -14,3 +14,11 @@ class Command(NoArgsCommand):
'thread_and_post_models_01162012.plsql'
)
setup_full_text_search(script_path)
+
+ script_path = os.path.join(
+ askbot.get_install_directory(),
+ 'search',
+ 'postgresql',
+ 'user_profile_search_16102012.plsql'
+ )
+ setup_full_text_search(script_path)