added last_local_call_time field to vicidial_list table. This change affected many scripts from the hopper loaders to the lead loaders to the vdc_db_query.php agent-side script. A script was created to populate this field from the logs: VICIDIAL_last_local_call_time_UPDATE.pl

git-svn-id: svn://192.168.202.10@921 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2008-07-13 15:45:22 +00:00
parent e584e016f8
commit a7cef459d6
15 changed files with 663 additions and 174 deletions
+5
View File
@@ -309,3 +309,8 @@ UPDATE system_settings SET db_schema_version='1098';
ALTER TABLE vicidial_campaigns MODIFY manual_dial_list_id BIGINT(14) UNSIGNED default '998';
UPDATE system_settings SET db_schema_version='1099';
ALTER TABLE vicidial_list ADD last_local_call_time DATETIME;
CREATE INDEX last_local_call_time ON vicidial_list (last_local_call_time);
UPDATE system_settings SET db_schema_version='1100';