2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Added new outcome codes and sample variable type

This commit is contained in:
Adam Zammit
2013-01-29 12:00:46 +11:00
parent 8eef600032
commit 61a7ac0803
2 changed files with 16 additions and 1 deletions

View File

@@ -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)

View File

@@ -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");
?>