aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2021-05-10 18:47:55 +0200
committerBadlop <badlop@process-one.net>2021-05-11 18:36:14 +0200
commit4fdebd296ac392a08ee06590ca4e2d44ee638b29 (patch)
tree1a76c917accb0db8590b02448b5d953af3a68cb7
parentUse the deps versions defined in rebar.config, not the latest available (diff)
Document that update_sql command only supports postgresql (#3439)
-rw-r--r--src/mod_admin_update_sql.erl3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mod_admin_update_sql.erl b/src/mod_admin_update_sql.erl
index 820f92ae6..0215a5172 100644
--- a/src/mod_admin_update_sql.erl
+++ b/src/mod_admin_update_sql.erl
@@ -63,7 +63,7 @@ depends(_Host, _Opts) ->
get_commands_spec() ->
[#ejabberd_commands{name = update_sql, tags = [sql],
- desc = "Convert SQL DB to the new format",
+ desc = "Convert PostgreSQL DB to the new format",
module = ?MODULE, function = update_sql,
args = [],
args_example = [],
@@ -365,4 +365,5 @@ mod_doc() ->
?T("This module can be used to update existing SQL database "
"from the default to the new schema. Check the section "
"http://../database-ldap/#default-and-new-schemas[Default and New Schemas] for details. "
+ "Please note that only PostgreSQL is supported. "
"When the module is loaded use 'update_sql' ejabberdctl command.")}.