|
Revision 3707, 415 bytes
(checked in by p_lindheimer, 5 years ago)
|
Merged revisions 3706 via svnmerge from
https://amportal.svn.sourceforge.net/svnroot/amportal/modules/branches/2.2
........
r3706 | p_lindheimer | 2007-02-05 21:49:40 -0800 (Mon, 05 Feb 2007) | 1 line
add option for an ivr to return to a parent ivr if one was called within its call path, otherwise specified destination is used
........
|
- Property svn:mime-type set to
text/plain
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
CREATE TABLE IF NOT EXISTS ivr ( ivr_id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, displayname VARCHAR(50), deptname VARCHAR(50), enable_directory VARCHAR(8), enable_directdial VARCHAR(8), timeout INT, announcement VARCHAR(255), dircontext VARCHAR ( 50 ) DEFAULT "default" ); |
|---|
| 2 |
CREATE TABLE IF NOT EXISTS ivr_dests ( ivr_id INT NOT NULL, selection VARCHAR(10), dest VARCHAR(50), ivr_ret TINYINT(1) NOT NULL DEFAULT 0); |
|---|