added phones_alias feature to allow for an alias to a group of phones entries for easier phone-login-load-balancing

Updated install docs to use Apache 2.2.8 and PHP 5.2.6
Update to Closer report

git-svn-id: svn://192.168.202.10@852 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2008-05-06 13:15:43 +00:00
parent 74a56d57bf
commit 2a31a04f70
9 changed files with 1187 additions and 114 deletions
+8
View File
@@ -126,3 +126,11 @@ ALTER TABLE vicidial_inbound_groups MODIFY after_hours_action ENUM('HANGUP','MES
ALTER TABLE vicidial_inbound_groups ADD afterhours_xfer_group VARCHAR(20) default '---NONE---';
UPDATE system_settings SET db_schema_version='1082';
CREATE TABLE phones_alias (
alias_id VARCHAR(20) NOT NULL UNIQUE PRIMARY KEY,
alias_name VARCHAR(50),
logins_list VARCHAR(255)
);
UPDATE system_settings SET db_schema_version='1083';