Mouth
Well-known member
I'm looking at changing active user upgrades that are currently permanent to instead having an expiry.
Would the following conceptual SQL work?
UPDATE xf_user_upgrade_active
SET end_date = UNIX_TIMESTAMP('2016-06-30')
WHERE user_upgrade_id = '1'
... and then the standard 'Downgrade Expired User Upgrades' cron job would remove them on the expiry date?
Would the following conceptual SQL work?
UPDATE xf_user_upgrade_active
SET end_date = UNIX_TIMESTAMP('2016-06-30')
WHERE user_upgrade_id = '1'
... and then the standard 'Downgrade Expired User Upgrades' cron job would remove them on the expiry date?