Changed survey audio files to allow for multiple files with pipe delimiter

small fix for remote agent inbound routing

git-svn-id: svn://192.168.202.10@1739 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2011-10-10 20:20:27 +00:00
parent ad5036487b
commit c7224e22ea
5 changed files with 92 additions and 14 deletions
+3 -2
View File
@@ -1540,7 +1540,8 @@ group_weight TINYINT(1) default '0',
calls_today SMALLINT(5) UNSIGNED default '0',
group_web_vars VARCHAR(255) default '',
index (group_id),
index (user)
index (user),
unique index viga_user_group_id (user, group_id)
);
CREATE TABLE vicidial_live_inbound_agents (
@@ -2679,7 +2680,7 @@ CREATE TABLE vicidial_log_noanswer_archive LIKE vicidial_log_noanswer;
CREATE TABLE vicidial_did_agent_log_archive LIKE vicidial_did_agent_log;
CREATE UNIQUE INDEX vdala on vicidial_did_agent_log_archive (uniqueid,call_date,did_route);
UPDATE system_settings SET db_schema_version='1302',db_schema_update_date=NOW();
UPDATE system_settings SET db_schema_version='1303',db_schema_update_date=NOW();
GRANT RELOAD ON *.* TO cron@'%';
GRANT RELOAD ON *.* TO cron@localhost;