aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-07-16 20:25:11 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-07-16 20:25:11 +0000
commit5ab35caeaaca630ddaa02000a540fc026200788d (patch)
treea29b24e9defaefdab45322d88af56c8f9cc27dda /contrib
parent0f0f08947bc2aa30c77b1484f34aadc961334336 (diff)
Add documentation for MOH realtime fields
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@277452 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'contrib')
-rw-r--r--contrib/realtime/mysql/musiconhold.sql19
1 files changed, 19 insertions, 0 deletions
diff --git a/contrib/realtime/mysql/musiconhold.sql b/contrib/realtime/mysql/musiconhold.sql
new file mode 100644
index 000000000..63ccd8dc4
--- /dev/null
+++ b/contrib/realtime/mysql/musiconhold.sql
@@ -0,0 +1,19 @@
+CREATE TABLE musiconhold (
+ -- Name of the MOH class
+ name char(80) not null primary key,
+ -- One of 'custom', 'files', 'mp3nb', 'quietmp3nb', or 'quietmp3'
+ mode char(80) null,
+ -- If 'custom', directory is ignored. Otherwise, specifies a directory with files to play or a stream URL
+ directory char(255) null,
+ -- If 'custom', application will be invoked to provide MOH. Ignored otherwise.
+ application char(255) null,
+ -- Digit associated with this MOH class, when MOH is selectable by the caller.
+ digit char(1) null,
+ -- One of 'random' or 'alpha', to determine how files are played. If NULL, files are played in directory order
+ sort char(10) null,
+ -- In custom mode, the format of the audio delivered. Ignored otherwise. Defaults to SLIN.
+ format char(10) null,
+ -- When this record was last modified
+ stamp timestamp
+);
+