G GKBlaze Member Nov 30, 2016 #1 Does anyone know how I can mass extend all active user upgrades by a certain amount of time? I remember doing this in vBulletin by running a sql query. If there is no traditional way to accomplish this can someone help me write the sql query? Thank you in advance
Does anyone know how I can mass extend all active user upgrades by a certain amount of time? I remember doing this in vBulletin by running a sql query. If there is no traditional way to accomplish this can someone help me write the sql query? Thank you in advance
Jake Bunce Well-known member Dec 1, 2016 #2 https://xenforo.com/community/threads/upgrade-active-user-upgrade-accounts.15693/#post-206321 Upvote 0 Downvote
G GKBlaze Member Dec 1, 2016 #3 Jake Bunce said: https://xenforo.com/community/threads/upgrade-active-user-upgrade-accounts.15693/#post-206321 Click to expand... What is the *60*60*24? could you take a moment and write query that increases for 2 days? Thanks for your help. Upvote 0 Downvote
Jake Bunce said: https://xenforo.com/community/threads/upgrade-active-user-upgrade-accounts.15693/#post-206321 Click to expand... What is the *60*60*24? could you take a moment and write query that increases for 2 days? Thanks for your help.
Jake Bunce Well-known member Dec 1, 2016 #4 GKBlaze said: What is the *60*60*24? could you take a moment and write query that increases for 2 days? Thanks for your help. Click to expand... That is 60 seconds times 60 minutes times 24 hours. This is 2 days: Code: UPDATE xf_user_upgrade_active SET end_date = end_date + 2*60*60*24 Upvote 0 Downvote
GKBlaze said: What is the *60*60*24? could you take a moment and write query that increases for 2 days? Thanks for your help. Click to expand... That is 60 seconds times 60 minutes times 24 hours. This is 2 days: Code: UPDATE xf_user_upgrade_active SET end_date = end_date + 2*60*60*24