added lead_id field to recording_log table and through vicidial.php and manager_send.php scripts

git-svn-id: svn://192.168.202.10@426 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2006-11-30 21:26:54 +00:00
parent c1d6972703
commit ed5af33449
6 changed files with 17 additions and 10 deletions
+3 -1
View File
@@ -138,7 +138,9 @@ length_in_sec INT(10),
length_in_min DOUBLE(8,2),
filename VARCHAR(50),
location VARCHAR(255),
index (filename)
lead_id INT(9) UNSIGNED,
index (filename),
index(lead_id)
);
CREATE TABLE live_inbound (
+3
View File
@@ -45,3 +45,6 @@ country_code SMALLINT(5) UNSIGNED
);
ALTER TABLE vicidial_list ADD index (postal_code);
ALTER TABLE recording_log ADD lead_id INT(9) UNSIGNED;
ALTER TABLE recording_log ADD index (lead_id);