You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At each upgrade, REDCap upgrade.php script adds or replaces a row in redcap_history_version. the fab deploy and upgrade tasks do not do that, but should. The line from REDCap we need to imitate is
REPLACE INTO redcap_history_version (`date`, redcap_version) values (CURDATE(), '$redcap_version');
With variables substituted, that line loks like this:
REPLACE INTO redcap_history_version (`date`, redcap_version) values (CURDATE(), '9.3.5');
-- Set date of upgrade --UPDATE redcap_config SET value = CURDATE() WHERE field_name ='redcap_last_install_date';
REPLACE INTO redcap_history_version (`date`, redcap_version) values (CURDATE(), '14.1.3');
-- Set new version number --UPDATE redcap_config SET value ='14.1.3'WHERE field_name ='redcap_version';
At each upgrade, REDCap upgrade.php script adds or replaces a row in redcap_history_version. the fab deploy and upgrade tasks do not do that, but should. The line from REDCap we need to imitate is
With variables substituted, that line loks like this:
Look for code to steal at
redcap_deployment/utility_redcap.py
Line 95 in 602cb1d
The text was updated successfully, but these errors were encountered: