Module: kamailio
Branch: master
Commit: 1c1e51388aad6c5ba064c283d5e124367b30ad7e
URL:
https://github.com/kamailio/kamailio/commit/1c1e51388aad6c5ba064c283d5e1243…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2017-04-05T09:36:17+02:00
mtree: clarifications about db table parameter in docs
---
Modified: src/modules/mtree/doc/mtree_admin.xml
---
Diff:
https://github.com/kamailio/kamailio/commit/1c1e51388aad6c5ba064c283d5e1243…
Patch:
https://github.com/kamailio/kamailio/commit/1c1e51388aad6c5ba064c283d5e1243…
---
diff --git a/src/modules/mtree/doc/mtree_admin.xml
b/src/modules/mtree/doc/mtree_admin.xml
index ec6b2d1..0162e32 100644
--- a/src/modules/mtree/doc/mtree_admin.xml
+++ b/src/modules/mtree/doc/mtree_admin.xml
@@ -86,19 +86,20 @@ modparam("mtree", "db_url",
"&exampledb;")
<section>
<title><varname>db_table</varname> (string)</title>
<para>
- Name of database table where data for trees is stored. It is ignored if a
- 'mtree' parameter is defined.
+ Name of database table where data for many trees is stored. It is ignored
+ if a 'mtree' parameter is defined. The SQL scripts creates a table named
+ 'mtrees' that can be used for this parameter.
</para>
<para>
<emphasis>
- Default value is <quote>mtrees</quote>.
+ Default value is <quote></quote> (no table name).
</emphasis>
</para>
<example>
<title>Set <varname>db_table</varname> parameter</title>
<programlisting format="linespecific">
...
-modparam("mtree", "db_table", "mymtrees")
+modparam("mtree", "db_table", "mtrees")
...
</programlisting>
</example>