diff options
author | Badlop <badlop@process-one.net> | 2021-05-10 18:47:55 +0200 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2021-05-11 18:36:14 +0200 |
commit | 4fdebd296ac392a08ee06590ca4e2d44ee638b29 (patch) | |
tree | 1a76c917accb0db8590b02448b5d953af3a68cb7 | |
parent | Use 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.erl | 3 |
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.")}. |