summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)