diff --git a/CHANGELOG b/CHANGELOG index 60a6891f..1f5d8bf0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -8,10 +8,22 @@ Database updates: ALTER TABLE `case` ADD `token` VARCHAR( 36 ) NOT NULL ; ALTER TABLE `case` ADD UNIQUE (`token`); -To allow for accessing existing cases in new system, need to assign a "token" for each case +To allow for accessing existing cases in new system, need to assign a "token" for each case: UPDATE `case` SET token = case_id; +New outcomes for email invitation and online self completion: + +INSERT INTO `outcome` (`outcome_id`, `aapor_id`, `description`, `default_delay_minutes`, `outcome_type_id`, `tryanother`, `contacted`, `tryagain`, `eligible`, `require_note`, `calc`) VALUES +(34, '1.1', 'Self completed online', 0, 4, 0, 1, 1, 1, 0, 'I'), +(35, '2.36', 'Self completion email invitation sent', 10080, 1, 0, 1, 1, 1, 0, 'O'); + +New sample variable type (Email address): + +INSERT INTO `sample_var_type` (`type`, `description`, `table`) VALUES +(8, 'Email address', ''); + + queXS 1.6.1 - Changes since 1.6.0 New Feature: Include paradata/metadata in data output (number call attempts, number of answering machine messages and all sample variables) diff --git a/admin/databasestrings.php b/admin/databasestrings.php index 52dcd1b4..18002cc4 100755 --- a/admin/databasestrings.php +++ b/admin/databasestrings.php @@ -85,5 +85,8 @@ T_("State"); T_("Postcode"); T_("Respondent first name"); T_("Respondent last name"); +T_("Email address"); +T_("Self completion email invitation sent"); +T_("Self completed online"); ?>