Added ability to set an audio store file for the voicemail greeting message

Added ability to delete audio files from the audio store

git-svn-id: svn://192.168.202.10@1865 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2012-10-19 13:43:41 +00:00
parent 8fc8d589ed
commit ff938c5224
8 changed files with 261 additions and 43 deletions
+10
View File
@@ -70,3 +70,13 @@ ALTER TABLE vicidial_campaigns MODIFY agent_dial_owner_only ENUM('NONE','USER','
UPDATE system_settings SET db_schema_version='1327',db_schema_update_date=NOW() where db_schema_version < 1327;
ALTER TABLE phones ADD voicemail_greeting VARCHAR(100) default '';
ALTER TABLE vicidial_voicemail ADD voicemail_greeting VARCHAR(100) default '';
ALTER TABLE system_settings ADD allow_voicemail_greeting ENUM('0','1') default '0';
ALTER TABLE system_settings ADD audio_store_purge TEXT;
ALTER TABLE servers ADD audio_store_purge TEXT;
UPDATE system_settings SET db_schema_version='1328',db_schema_update_date=NOW() where db_schema_version < 1328;