Changed all of the admin scripts from using the PHP ereg functions to preg. This is a requirement for moving to PHP6 where ereg functions are depricated. This will also have the benefit of speeding up those scripts because preg is supposed to be more efficient and faster than ereg. Added recording_id to the available fields for the dispo call url feature Added pause code to the agent_status non-agent api function output git-svn-id: svn://192.168.202.10@1994 3d104415-ff17-0410-8863-d5cf3c621b8a
15 lines
806 B
SQL
15 lines
806 B
SQL
UPDATE system_settings SET db_schema_version='1349',version='2.8b0.5',db_schema_update_date=NOW() where db_schema_version < 1349;
|
|
|
|
ALTER TABLE vicidial_state_call_times ADD ct_holidays TEXT default '';
|
|
|
|
UPDATE system_settings SET db_schema_version='1350',db_schema_update_date=NOW() where db_schema_version < 1350;
|
|
|
|
ALTER TABLE vicidial_users ADD failed_login_count TINYINT(3) UNSIGNED default '0';
|
|
ALTER TABLE vicidial_users ADD last_login_date DATETIME default '2001-01-01 00:00:01';
|
|
ALTER TABLE vicidial_users ADD last_ip VARCHAR(15) default '';
|
|
ALTER TABLE vicidial_users ADD pass_hash VARCHAR(100) default '';
|
|
|
|
ALTER TABLE system_settings ADD pass_hash_enabled ENUM('0','1') default '0';
|
|
|
|
UPDATE system_settings SET db_schema_version='1351',db_schema_update_date=NOW() where db_schema_version < 1351;
|