mflorell wrote:Here's a sample SQL query that can do what you're asking, you just need to adjust it for the 'user' who's callbacks you want to update, and you can run it in mysql("mysql asterisk"):
UPDATE vicidial_callbacks SET callback_time = (callback_time + INTERVAL 24 HOUR),status='ACTIVE',modify_date=NOW() WHERE status='LIVE' and user='1234567890';
Thank you so much for this, but it still leaves the MAIN issue in place. All the calls that were previously marked as LIVE, and flashing, now have new dates of the next day and are now scheduled to be called the next day, but they still show was LIVE callbacks even though when i look at them the date has not yet happened to trigger them. Meaning when set to force dial callbacks, i still have to go through every single callback before anything else can be done. How do I also clear the LIVE flags so that they are not currently triggered after they were moved using your previous command? Can we put the 2 commands in one, or is there another command I can run behind the first one to clear live flags also?
Thanks for all your help.